CodeProject
One of the features that I like the most in ASP.NET MVC is HTML Helpers, I use them all the time, and I also use Google Maps very often, so it's natural to join them and create a simple HTML Helper Extension Method that you can use immediately in your applications.
Google Maps provides an API for generating map images from parametrized URLs called Google Static Maps API, so today we will create an Extension Method to the HtmlHelper class that you can use to easily embed a Google Static Map into any View Page.
We will start with some text from the API docs.
Google Static Maps API Query String Parameters
Name | Requirement | Description |
center | Required
if markers not present | Defines the center of the map |
zoom | Required
if markers not present | Zoom levels
between 0 (the lowest zoom level) to 21+ (down to individual buildings) |
size | Required | Defines the rectangular dimensions of the map image |
format | Optional | Defines the format of the resulting image (png8,png,png32,gif,jpg,jpg-baseline ) |
maptype | Optional | Defines the type of map to construct (roadmap,satellite,terrain,hybrid ) |
language | Optional | Defines the language to use for display of labels on map tiles |
markers | Optional | Define one or more markers to attach to the image at specified locations, more info |
path | Optional | Defines a single path of two or more connected points to overlay on the image at specified locations, more info |
visible | Optional | Specifies one or more locations that should remain visible on the map |
style | Optional | Defines a custom style to alter the presentation of a specific feature (road, park, etc.) of the map, more info |
sensor | Required | Specifies whether the application requesting the static map is using a sensor to determine the user’s location, more info |
Create a new MVC 3 Web application and add the following module into your Models folder.
Google Static Map Extension Method (VB .NET)
Public Module HtmlHelpers
<Runtime.CompilerServices.Extension()>
Function GoogleStaticMap(helper As HtmlHelper,
title As String,
latitude As Decimal,
longitude As Decimal,
width As Integer, height As Integer,
Optional zoom As Integer = 15,
Optional language As String = "en") As MvcHtmlString
Dim googleApiUrl = "http://maps.googleapis.com/maps/api/staticmap?sensor=false"
Dim url = New System.Text.StringBuilder
url.Insert(0, googleApiUrl)
url.Append("&language=")
url.Append(language)
url.Append("&zoom=")
url.Append(zoom.ToString)
url.Append("&size=")
url.Append(width.ToString)
url.Append("x")
url.Append(height.ToString)
url.Append("&markers=")
url.Append(latitude.ToString)
url.Append(",")
url.Append(longitude.ToString)
Dim imgTag = New TagBuilder("img")
imgTag.MergeAttribute("src", url.ToString)
imgTag.MergeAttribute("style", "border:1px solid black;")
imgTag.MergeAttribute("alt", title)
Return MvcHtmlString.Create(imgTag.ToString(TagRenderMode.SelfClosing))
End Function
End Module
Explain The Code
Using a string builder, we construct the final parameterized URL, notice that the markers parameter is of format “latitude,longitude
”, then a TagBuilder is used to create our IMG
tag with the attributes required to show a Google Static Map, as IMG
tags are self-closing we select the self-closing TagRenderMode and return the final encoded HTML with MvcHtmlString.Create
method.
That’s it, we create the URL, and then create an IMG tag with that URL as source.
How To Use It
In your Views/Home folder, open the Index.vbhtml page and use the following code:
@Code
ViewData("Title") = "Index"
End Code
<h2>Google Static Maps - Example</h2>
@Html.GoogleStaticMap("My First Map", 12.250151, 64.33717, 550, 500)
Enhancements
- Geocoding feature
- Show multiple location markers
- Use map styles to change the appearance of the map
- Use marker styles to change the appearance of the marker
Summary
There are just too many features available in Google Maps API, we talked here about a quick and portable implementation that can quickly and easily fit into any project with a “Contact Us” page that needs a map. I hope that this can help you start your own Advanced Google Maps HTML Helper.
Filed under:
.NET Tagged:
Google,
Helpers,
Map,
MVC