0
aspx :code:    
        <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick">
        </asp:Timer>
        <div id="map">
        <cc1:GMap ID="GMap1" runat="server" />
        </div>            
    C# cod:    
    protected void Timer1_Tick(object sender, EventArgs e)
    {
     GMap1.resetMarkers(); 
     Subgurim.Controles.GLatLng gLatLng = new  Subgurim.Controles.GLatLng(Convert.ToDouble(status.Rows[0][0]), Convert.ToDouble(status.Rows[0][1]));
     GMap1.setCenter(gLatLng, 16, Subgurim.Controles.GMapType.GTypes.Normal);
     Subgurim.Controles.GMarker oMarker = new Subgurim.Controles.GMarker(gLatLng);
     GMap1.addGMarker(oMarker);
  }                

每 40 秒 GMap 就会在这里刷新一次。我想在没有 GMap 刷新的情况下在 GMap 上设置新的 lat 和 lang。我如何在 Gmap 上设置这个新点或标记

4

2 回答 2

1

断开您的计算机与互联网的连接

对不起,伙计,必须这样做:D:D:D

于 2013-08-20T08:56:45.650 回答
0
// Enable the visual refresh
google.maps.visualRefresh = true;

var map;
function initialize() {
  var mapOptions = {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById('map-canvas'),
      mapOptions);
}

google.maps.event.addDomListener(window, 'load', initialize);
于 2013-08-07T08:05:19.780 回答