我想创建一个kml文件,但我找不到如何使用google-maps-v3设置地图中心
所以如何设置。
感谢
答案 0 :(得分:1)
Maps API V3目前不支持KML叠加层。然而,这是一个计划的功能。
答案 1 :(得分:0)
请尝试我在OpenLayers中使用的这个简短示例,OpenLayers是专家程序员的JavaScript地图库。
<html>
<head>
<title>My OpenLayers: Google Layer</title>
<link rel="shortcut icon" href="http://www.gis.com.my/logo.ico" type="image/x-icon"/>
<link rel="stylesheet" href="http://openlayers.org/api/theme/default/style.css" type="text/css" />
<link rel="stylesheet" href="http://openlayers.org/dev/examples/style.css" type="text/css" />
<!-- this gmaps key generated for http://localhost:8080/geoserver/ -->
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAl9RMqSzhPUXAfeBCXOussRTQDbvAygy0cfGJr8dEMAYKf3RWNBQqP9mjKIsqTfmAlz5LOJ3Xpy5s4w'></script>
<script src="http://openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init() {
// Create the map object
map = new OpenLayers.Map('map');
// Create a Google layer
var gmap = new OpenLayers.Layer.Google(
"Google Streets", // the default
{numZoomLevels: 20}
);
// Add layer to map
map.addLayer(gmap);
// Zoom to Kuala Lumpur, Malaysia
map.setCenter(new OpenLayers.LonLat(101.686855,3.139003), 13);
}
</script>
</head>
<body onload="init()">
<h1 id="title">My OpenLayers: Google Layer</h1>
<div id="map" style='width: 700px; height: 700px'></div>
</body>
</html>
请注意,google-maps-v3被强制为中心。正如您在以下代码中看到的那样:
map.setCenter(new OpenLayers.LonLat(101.686855,3.139003), 13);
LonLat位于吉隆坡。请记住,它与学生的地理学科完全不同,因为经度是x坐标。和纬度是y坐标。请参考笛卡尔协调原则。
祝你好运。问候,
的 zearth 强> 的