Reputation: 269
I know that there is a tool that allow you to convert any image to be like Google maps. For instance, you can zoom in, zoom out, move the picture right and left. I've forgotten this tool, does anyone know it ?
Upvotes: 3
Views: 6653
Reputation: 59435
You can also use map interface to display images over map. E.g. in google you can use Ground overlays or Custom overlays from Google maps API v3 - there is a very good documentation with examples (ground overlay, custom overlay). Ground overlays seem to be simpler, you just put an image over the map and specify corner coordinates. Custom overlays allow for more functionality, but are more complex to use.
Or you can use the approach sketched by neko - tile the layer and use google.maps.ImageMapType
interface. But for smaller images I think the ground/custom overlays are much simpler solution.
You can also use opensource map interfaces like http://openlayers.org/ to accomplish the same thing as google does in a similar way (if you want to get rid of Google logo :-)).
Upvotes: 2
Reputation: 385
I am just working on a web project that need to display my images have features google map like.
I found some tools are very cool.
Overscroll jQuery plugin
Upvotes: 1
Reputation: 330
You can use MapTiler and maps api to create a custom map type and use it just like google maps, it's not an automated process but is the best one in terms of customizations!
Upvotes: 2