Click here to Skip to main content
15,881,600 members
Articles / Web Development / ASP.NET
Article

Store Locator: Help customers find you with Google Maps

Rate me:
Please Sign up or sign in to vote.
4.79/5 (17 votes)
22 Mar 2007CPOL6 min read 184.8K   2.5K   76   53
Create a Google Maps Store Locator to help customers find you, using GMapEZ declarative Maps API

Google maps help your customers find you

Background

A month or two ago (about the same time Google launched 'full' Map functionality in Australia) I started reading about the Google Maps API, but was a little discouraged by the Javascript-focus: it's definitely a powerful toolset but I didn't have time to learn it. Then I came across GMapEZ which is a great, 'declarative' mechanism to get Google Maps working quickly and easily. This article shows how you could use Google Maps (and parts of their API) along with GMapEZ to build a 'store locator' on your website - customers can type their location (zipcode, suburb or full street address) and be shown which stores are closest to them.

Building a Store Locator

The following things are required to build a map interface to your store directory:

  1. The addresses of all your stores! In the download they are stored in an XML file, but you probably have a database
  2. Latitude and longitude locations for each store address. You could look them up individually or use the Console Application in the download to 'geocode' your entire list via Web Services
  3. A web page to allow Customers to tell you where they are (suburb, zipcode or even full address), and a way to 'geocode' the Customer's location
  4. An algorithm to work out which
  5. And finally, a map interface to display all that data: the Customer's location, your nearby store locations, and any other information that might be useful (address, telephone number, photos, etc).

Some things to note

  • You need a Google Maps key for this code to work. Once you have signed up, put your key in the Console Application .exe.config file AND your web.config
  • GMapEZ is used to make displaying the map data easier. This is a service provided free by another developer - please consider donating if you use the code
  • If you're in Australia, the geocoder can also use the WhereIs Workshop API to 'geocode' Australian addresses. You may find it more (or less) accurate than the Google API for local data

Code Structure

Visual Studio 2005 Solution

The Common project contains (from top to bottom):

The Geocoder Console Application project contains only Main.cs. It is intended to be customized for your particular store address data and run once (or after store data changes) to 'geocode' (get latitude and longitude) for each location.
The demo code uses an XML (serialized array) file to read/write from, so you'll have to build your own database interface.

The WebApplication contains only the ASPX file that has the search/results code and a web.config which has some settings you'll need to move into "your" web.config.
Although it's not shown here, the WebApplication references the Common project, so MAKE SURE you also put the Common DLL in your website's /bin/ directory (otherwise the ASPX page won't work).

Steps in detail

Each of the steps listed at the beginning of the article are discussed below:

1. Your stores' locations

The starting point for the Store Locator is knowing where all the stores are. In the sample, the address data is in an XML file which is a serialized Outlet[]. It should be relatively easy to get your store addresses in a similar format. The class and XML format are shown below:

Image 3 Image 4

2. What is geocoding?

Once you have your addresses, you need to find out their latitude and longitude - you need to 'geocode' the addresses. The Geocoder Console Application does that by looping through the addresses and calling a Google Maps web-service to determine the location.

The basic code loop is shown below; the XML that is saved at the end looks like this (notice the Location element has been added).

Image 5

C#
// load XML containing serialized Outlet[] objects
Outlet[] oa = Kelvin<Outlet[]>.FromXmlFile(infilename);
/*
Instead of opening an XML file to get the outlet list, you could
 open a database connection here and loop through all your addresses
 */
foreach (Outlet o in oa)
{
    if (null == o.Location)
    {
        o.Location = Geocoder.LocateGoogle
                (o.StreetAddressString, o.Suburb, o.State, o.ZipCode);
        /*
         If you had a database, you could write the latitude/longitude for
         each address back to the database here
         */
    }
}
/*
 Here we save the data to an XML for use by the ASPX page.
 If you'd been saving each lat/long to a database inside the foreach
 loop, you wouldn't need this
 */
Kelvin<Outlet[]>.ToXmlFile(oa, outfilename);
The application uses the Geocoder.LocateGoogle() method (which is located in the Common project) to call the webservice. The key lines of code are:
C#
string url =
    "http://maps.google.com/maps/geo?q={0}&output=xml&key=" + _GoogleMapsKey;
//...
string xmlString = GetUrl(url);
//...
coords = xd.GetElementsByTagName("coordinates")[0]; // assumes at least one
Geoloc? gl = new Geoloc (
        Convert.ToDouble(coordinateArray[1].ToString())
      , Convert.ToDouble(coordinateArray[0].ToString()));

When run, the console output looks like this:

Console application running

3. Where is the customer?

Now that we have our data 'geocoded', we need a webpage for the customer to:

  1. enter their location, and
  2. view the results

There is just a single page in the WebApplication - NeedCoffeeNow.aspx - which is a CODE-INLINE page to make it easier to deploy on your website.

The input form itself is very simple:

ASP.NET
<form runat="server" action="NeedCoffeeNow.aspx">
    Enter your suburb (or postcode):<br />
    <asp:TextBox Id="SuburbTextBox" runat="server" />
    within
    <asp:ListBox Id="MaxDistanceList" runat="server"
            SelectionMode="single" Rows="1">
        <asp:ListItem Text="2 km" Value="2" />
        <asp:ListItem Text="5 km" Value="5" />
        <asp:ListItem Text="10 km" Value="10" />
        <asp:ListItem Text="20 km" Value="20" />
        <asp:ListItem Text="50 km" Value="50" />
        <asp:ListItem Text="200 km" Value="200" />
    </asp:ListBox>
    <br />
    <asp:Button Id="FindButton" Text="Find Nearest" runat="server"
        OnClick="FindButton_Click" />
    <asp:Literal Id="DisplayLinks" runat="server" />
</form>

When the customer enters some data (either their zipcode, suburb or full street address) the FindButton_Click() method uses the "same" Geocoder.LocateGoogle() method that the Console Application used (which is why it's in the Common.DLL).

C#
// Find the START LOCATION (entered by the user)
Geoloc startLocation = Geocoder.LocateGoogle (
        this.SuburbTextBox.Text + "," +
        ConfigurationManager.AppSettings["Country"])??new Geoloc();

4. Which store is closest?

With both the customer's location and all the store locations available as latitude/longitude pairs, we need an algorithm to determine the distance between the customer and each store so we can find out which ones are the closest. In fact, we will get the distance to every store and "order them" according to the distance from the customer.

Thankfully, CodeProject authors come to the rescue again, with C# implementation of "The Haversine formula". If you know of another algorithm, you can easily plug it into the Common project, but this implementation seems to work fine.

The ASPX page loops through every store and determines the distance from the customer, adding each result to a SortedList which we will later iterate over to output the results.

C#
// Generate the NEAREST OUTLETS list,
// calculating the distance between every Outlet in our XML 'database'
// and the start location; adding to a SortedList by distance
SortedList<Double, Outlet> nearest
    = new System.Collections.Generic.SortedList<double, Outlet>();
foreach (Outlet o in oa)
{   if (o.Location.HasValue)
    {
        Double distance = Distance(startLocation, o.Location.Value);
        nearest.Add(distance, o);
    }
}

5. Bringing it all together: Google Maps & GMapEZ

Having 'geocoded' our stores and the Customer's location, and calculated the distance between them, all we need to do is display the results!

A good place to start is the GMapEZ Documentation which explains that in order to display a map with markers, all you need is a really simple HTML page, like this:

HTML
<html xmlns:v="urn:schemas-microsoft-com:vml">
  <head>
    <title>My GMapEZ Maps</title>
    <meta name="gmapkey" content="abcdefg" />
    <script
      src="http://bluweb.com/chouser/gmapez/gmapez-2.js"
      type="text/javascript"></script>
  </head>
  <body>
    <div class="GMapEZ" style="width: 300px; height: 300px;">
    <!-- points go here -->
    </div>
  </body>
</html>

and as many markers as you need (where it says points go here), which can be as simple as this format:

HTML
<a href="http://maps.google.com/maps?ll=-33.867617,151.20842"></a>

If you look closely at the output in the ASPX page, it's a little more complex:

ASP.NET
<a id="idWynyard"
href="http://maps.google.com/maps?ll=-33.86584,151.207265"
title="Wynyard">GREEN</a><div><p><b style="color:Green;">
Wynyard</b> (0.1kms)<br />301 George Street<br />Sydney, NSW, 2000</p>
<form action="http://maps.google.com/maps?f=d&hl=en">
    <span style="color:Gray;font-size:smaller">
Enter your address to find your way here</span><br />
    <input name="saddr" value="Sydney"/>
    <input name="sll" value="-33.867139,151.207114" type="hidden"/>
    <input name="daddr" value="-33.86584,151.207265" type="hidden"/>
    <input type="submit" value="Get directions" />
</form></div>

To quickly explain some of the extra bits:

  • a id attribute is used to activate the marker from a hyperlink elsewhere on the page
  • a title attribute works like ToolTip text when the mouse is over the marker
  • a GREEN element value sets the color of the marker
  • div "following" the a contains the HTML to display inside the 'speech bubble' when the marker is clicked
  • form action="http://maps.google.com/maps?f=d&hl=en" creates a mini-form inside the 'speech bubble' which has 'hardcoded' inputs for each location and takes the customer to Googles driving directions!

The GMapEZ foundation "requires" strict adherence to XML standards in the page, so "be careful" when playing with the sample code. If the page stops working, it's probably due to a missing close-tag or some other minor XML validation error.

Wrap-up

The download is really just a proof-of-concept: most sites will have a database of addresses to display, and possibly logged-in customers so you'll already know their address. Alternatively you may find other uses for either the geocoding application or the GMapEZ mapping interface - have fun!

P.S. You can try the NeedCoffeeNow sample online.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Australia Australia
-- ooo ---
www.conceptdevelopment.net
conceptdev.blogspot.com
www.searcharoo.net
www.recipenow.net
www.racereplay.net
www.silverlightearth.com

Comments and Discussions

 
AnswerRe: Any way to display distance in miles rather than km's ? Pin
jkesterson9-Jun-10 6:19
jkesterson9-Jun-10 6:19 
GeneralRunning GeoCoder Problems Pin
Damo B5-Feb-09 7:14
Damo B5-Feb-09 7:14 
GeneralRe: Running GeoCoder Problems Pin
Damo B7-Feb-09 13:26
Damo B7-Feb-09 13:26 
GeneralRe: Running GeoCoder Problems Pin
Damo B16-Feb-09 0:51
Damo B16-Feb-09 0:51 
GeneralPlease help Pin
klace065-Dec-08 10:50
klace065-Dec-08 10:50 
AnswerRe: Please help Pin
craigd7-Dec-08 11:32
craigd7-Dec-08 11:32 
GeneralThanks Craigd Pin
johnkuhn803026-Sep-08 8:56
johnkuhn803026-Sep-08 8:56 
QuestionHow to adapt the code to get the address data from a database SQL or MySQL and more a question? Pin
LuizItatiba21-Aug-08 18:18
LuizItatiba21-Aug-08 18:18 
Craigd, good morning, I am from Brazil and I found your article interesting but I have two questions.

1) In your article you handle the data of the address of an XML file, as I could pick them from a database sql or mysql for example?

2) He recognizes the states, territories and cities of Brazil and the map is embedded in the page as a picture of your article or it appears in a window?

Thanks and I look forward - Luiz Antonio - Itatiba-SP.Brasil

Translated from Portuguese into English by Google

LADEF
GeneralWebsite not available from outside Pin
Borrierulez7-Mar-08 4:35
Borrierulez7-Mar-08 4:35 
GeneralIt's one of these days.... Pin
Spotnick13-Dec-07 9:08
Spotnick13-Dec-07 9:08 
GeneralIt's one of these days.... Pin
Spotnick13-Dec-07 9:08
Spotnick13-Dec-07 9:08 
GeneralIt's one of these days... Pin
Spotnick13-Dec-07 9:07
Spotnick13-Dec-07 9:07 
QuestionCan not determine start location Pin
tehremo21-Sep-07 11:18
tehremo21-Sep-07 11:18 
AnswerRe: Can not determine start location Pin
craigd21-Sep-07 16:52
craigd21-Sep-07 16:52 
GeneralRe: Can not determine start location Pin
tehremo22-Sep-07 4:12
tehremo22-Sep-07 4:12 
GeneralRe: Can not determine start location Pin
Member 76564362-Mar-11 5:34
Member 76564362-Mar-11 5:34 
GeneralApplication doesn't load correctly Pin
Borrierulez12-Sep-07 3:57
Borrierulez12-Sep-07 3:57 
GeneralRe: Application doesn't load correctly Pin
Borrierulez26-Sep-07 5:06
Borrierulez26-Sep-07 5:06 
GeneralRe: Application doesn't load correctly Pin
Borrierulez8-Oct-07 4:14
Borrierulez8-Oct-07 4:14 
GeneralRe: Application doesn't load correctly Pin
GaveGozer6-Dec-07 11:05
GaveGozer6-Dec-07 11:05 
GeneralRe: Application doesn't load correctly Pin
GaveGozer6-Dec-07 11:28
GaveGozer6-Dec-07 11:28 
GeneralRe: Application doesn't load correctly Pin
Borrierulez11-Dec-07 21:51
Borrierulez11-Dec-07 21:51 
AnswerAnswer: set a culture that uses fullstop (.) as the decimal seperator [modified] Pin
craigd12-Dec-07 9:10
craigd12-Dec-07 9:10 
GeneralUsing Store locator with Database Pin
SumanDesu9-Aug-07 20:34
SumanDesu9-Aug-07 20:34 
GeneralAlternative sample, uses database Pin
craigd18-Nov-07 20:18
craigd18-Nov-07 20:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.