我创建了一个aspx页面,其中有一个Google Map,使用MSSQL Server填充标记的位置,我有一个Android应用程序,它正在更新一个对象的纬度和经度。
我想在表格中更改标记的纬度和经度后移动标记。
这是我的javascript
<script type="text/javascript">
var MapObjectMarkers = [
<asp:Repeater ID="rptMapObjectMarkers" runat="server">
<ItemTemplate>
{
"title": '<%# Eval("mapObjectName") %>',
"lat": '<%# Eval("indexedLatitude") %>',
"lng": '<%# Eval("indexedLongitude") %>',
"description": '<%# Eval("mapObjectDescription") %>',
"type": '<%# Eval("mapObjectTypeName") %>',
"iconpath": '<%# Eval("mapObjectIconFileName") %>',
}
</ItemTemplate>
<SeparatorTemplate>
,
</SeparatorTemplate>
</asp:Repeater>
];
function loadMapObjects() {
var mapOptions = {
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
var fullBounds = new google.maps.LatLngBounds();
var infoWindow = new google.maps.InfoWindow();
var map = new google.maps.Map(document.getElementById("dvMap"), mapOptions);
for (i = 0; i < MapObjectMarkers.length; i++) {
var data = MapObjectMarkers[i]
var myLatlng = new google.maps.LatLng(data.lat, data.lng);
var iconhandler = new google.maps.MarkerImage(data.iconpath);
fullBounds.extend(myLatlng);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: data.title,
icon: iconhandler,
optimized: false
});
map.fitBounds(fullBounds);
(function (marker, data) {
google.maps.event.addListener(marker, "mouseover", function (e) {
infoWindow.setContent("Latitude: " + data.lat + "<br>Longitude: " + data.lat + " <br>Description: " + data.description);
infoWindow.open(map, marker);
});
})
(marker, data);
}
window.onload = function() {
loadMapObjects();
}
</script>
在这个脚本中,我已经通过on.load事件在地图上填充了标记。
我的问题是,每当表格发生变化时,如何更新aspx页面中的标记,以便它看起来像移动。
谢谢! :d