我有一个 map.html 文件,其中包含一个用于 google maps api v3 的脚本,我之前一直在尝试使用 webbrowser1.DocumentText 和 Webbrower1.Document.InvokeScript 运行这个脚本,但没有成功。
这次我将 map.html 托管在一个网站上,我的目标是能够修改这个 html 文件,然后在我的 Windows 应用程序上运行它以显示所需的地址。
以下是托管的 map.html 的代码:http: //url.com/map.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com.mx/maps/api/js?sensor=true&language=es"></script>
<script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
//var latlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 16,
//center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
//var address = document.getElementById("address").value;
var address = "Miami Beach, Flordia" //Address to modify in order to display
geocoder.geocode({ 'address': address }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>
如果您将此代码复制并粘贴到 html 中,它应该显示 Miami Beach, FL
现在在我的 Windows 应用程序上,我想编辑托管在一个网站上的这个 html,我想将佛罗里达州迈阿密海滩更改为佛罗里达州那不勒斯作为示例。
然后在我的 Windows 应用程序上使用网络浏览器并将其显示为 Webbrowser1.Navigate("http://url.com/map.html")
非常感谢您的帮助。
我确实发现了如何在将 html 本地保存在我的计算机上时对其进行修改,但对于我真正需要的,这不是一种可行的方法。
谢谢你,
里奥·P。