代码工作正常,但我想添加自己的位置。 例如在下面的脚本
中map.setCenter(new google.maps.LatLng(37.4419,-122.1419),13);
如果我想要Pune,India地图,正在给我这个特定位置的地图 那么我需要把这个位置放在哪里或者如何获得这个位置的lat lng?
我怎么能这样做,请帮助我,我是mvc的新手。
<script type="text/javascript" src="http://www.google.com/jsapi?key=mykey"></script>
<script type="text/javascript">
var allMarks = [];
google.load("maps", "2");
//This function will help us to add the mark at
//location where user has double clicked. Then
//we will add all the marks in our array so that
//we can send it back to the controller
function initialize() {
var map = new google.maps.Map2(document.getElementById("map"));
map.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
marker = new google.maps.marker
map.setUIToDefault();
GEvent.addListener(map, "dblclick", function(overlay, latlng) {
if (latlng) {
var mark = new GMarker(latlng);
allMarks.push(latlng);
map.addOverlay(mark);
}
});
}
google.setOnLoadCallback(initialize);
//This function will be called for saving the mark
//for that it will send the data back to the controller
function saveMap() {
//gmap object with all values of the map mark
var gmap = {
Locations: allMarks,
Description: Description.value
}
//Ajax call for saving the data at the server. It will send the gmap
//object tot the server
$.ajax({
type: "POST",
url: "/Home/Create",
data: gmap
});
}
</script>
答案 0 :(得分:3)
假设您只需要执行一次,而不是动态地对任意位置进行地理编码,那么您所要做的就是替换
中的坐标map.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
使用您自己的坐标和缩放级别。您可以通过各种方式手动轻松找到某个位置的纬度/经度 - 我喜欢getlatlon.com。
这真的是你的问题吗?如果您需要采取任意地址,例如根据用户输入,并将地图置于中心位置,您可能需要查看Google的geocoding API。