如何停止刷新谷歌地图
本文关键字:谷歌地图 刷新 何停止 | 更新日期: 2023-09-27 18:26:39
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 上设置新的纬度和语言。 如何在 Gmap 上设置此新点或标记
断开
计算机与互联网的连接
对不起,伙计,不得不这样做:D:D:D
// 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);