Google My map control - asp.net

Is there Google My Map control available for free download, which use to draw shapes on the map

For the API V2 there's GeometryControls:
http://gmaps-utility-library-dev.googlecode.com/svn/trunk/geometrycontrols/
For V3 I'm not aware of any.
Marcelo.

Related

Google maps API v3 how do you recompose ThoroughfareName?

I'm using the ThoroughfareName property of google maps api v2 which is very handy to get only the address part.
I didn't see any equivalent to this in api v3. Is there some best practices / recognized algorithm to build it back using address_components ?
So far what I have done is use the route type of address_components + the street_number. This is probably not the correct algorithm but it suits my needs.

Nokia Map Tiles REST API

I have an account for Nokia Maps API but am wondering what URL I should use to request tiles through the API correctly? I am using the Leaflet maps API and my URL string looks like this:
http://3.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/normal.day/{z}/{x}/{y}/256/png8?app_id=XXX&token=XXX
It works, but I don't believe I am using the API correctly - I just stole the first part of the URL (http://3.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/normal.day) from the Network tab of dev tools when I checked out Nokia maps in my browser.
In the documentation it tells me I can request based on lat, long and zoom, but not based on X and Y.
Is anybody familiar with Nokia Maps API?
Regarding the original question I'm guessing you have acquired credentials for the Map Image API: http://developer.here.net/docs/map_image/index.html There are a series of interactive examples available, which explain how to get back a static map image using latitude and longitude such as this one here: http://developer.here.net/apiexplorer/examples/api-for-rest/getting-started/basic-map-wh.html All the urls for the Map image API start with http://m.nok.it
Using URLs for the map tiles from the http://here.com website isn't the same service, it isn't an official API (hence the reason it is undocumented) and the URLs could be changed without notice.
Updated
HERE now offers three web-based Maps APIs, and since last year a TMS (Tile Map Service) a.k.a. Map Tile API, which is what I think you are after is now publicly available.
As noted by Luciano Issoe, the correct URLs for the Map Tile API are now publically documented see: https://developer.here.com/rest-apis/documentation/enterprise-map-tile
Alternatively, if you want to use an interactive map service with Nokia's mapping data, your best bet would be to use the Maps API for Javascript described here:
http://developer.here.net/docs/maps_js/index.html
It seems that it´s a documented service now: https://developer.here.com/rest-apis/documentation/enterprise-map-tile
To retrieve a map covering a specific area using the Map Image API, add two points of interest to the map for the top right and bottom left corner and then use the nomrk to make the POIs invisible:
http://m.nok.it/?w=512&poi=52.6764,13.7636,52.351,13.0185&nomrk

How to draw route from source to destination in google map api 3

Below link is very helpful. I want to do extra but I can't. I want to draw route between 2 or more places like google does, in that source code it has only 2 places (Under 'Direction' Section).
Please help me and thanks in advance
http://www.codeproject.com/Articles/291499/Google-Maps-API-V3-for-ASP-NET
Google Maps JavaScript API V3 allow map objects to store state and update their presentation automatically by implementing MVC objects.
Two of these may interest you in your project.
DirectionsService and DirectionsWaypoint.
Specifically you can use Waypoints to provide locations on the route. These waypoints can be made movable.

How can I use the google maps api v3 in arc2earth?

I've imported the google maps street layer with arc2earth and produced a new one, and I show it in a web site with the google api v3 and the streets layer generated by me doesn't match the google maps street layer, and that happens because arc2earth uses the maps from the google api v2. And nobody believes me. I've talked with arc2earth and google support, and both say that the maps are the same.
But I have proofs:
for example in this location it is very clear how different they are:
19.369818,-99.261531
(mexico city)
You can check the v2 here:
http://gmaps-samples.googlecode.com/svn/trunk/geocoder/v2-geocoder-tool.html#q%3D19.369818%2C-99.261531 (zoom in please)
and the v3 in the official google maps page:
http://maps.google.com/maps?q=19.368376,-99.263443&hl=en&ll=19.369684,-99.261244&spn=0.00143,0.002411&sll=19.369722,-99.261295&sspn=0.00144,0.002411&vpsrc=6&t=m&z=19
Answer:
The A2E community edition(Trial) uses the v2 maps. All the paid editions uses the v3 maps.

Show timezones using google maps api v3

I want to show timezones on the map I created using google maps api v3.
I want to show something like this --> http://24timezones.com/
If you don't mind using a deprecated API, you can use API v2 in combination with sample code that is easily found with a Google search.
Otherwise, I think you will need to find a data source that will give you the timezones in some format (perhaps KML?), and draw them on to the map perhaps using Polyline objects.

Resources