开发者

Google map with highlighted locations

开发者 https://www.devze.com 2023-04-08 20:34 出处:网络
I want google map with highlighted locations using html or classic asp. How can i do it? Please check the link.开发者_JS百科

I want google map with highlighted locations using html or classic asp. How can i do it? Please check the link.

开发者_JS百科

This is sample link.


They've created separate overlays, in which they're layering transparent PNG images over the top of a map,

e.g. http://www.shelbybb.com/gunnel.png

And the code to add it to the map:

var gunnelBounds = new google.maps.LatLngBounds(new google.maps.LatLng(38.01051, -85.00043), new google.maps.LatLng(38.54504, -83.97889));
        var gunnelmap = new google.maps.GroundOverlay("gunnel.png", gunnelBounds);
        gunnelmap.setMap(map);
0

精彩评论

暂无评论...
验证码 换一张
取 消