- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将北/南/东/西控件添加到我网站上的谷歌地图 API。
它们应该如下所示:
目前我的 map JS 代码如下所示:
function initialize() {
var mapCanvas = document.getElementById('map');
var mapOptions = {
zoom: 12,
center: {lat: 52.237442, lng: 21.003692},
mapTypeControl: false,
zoomControl: true,
zoomControlOptions: {
position: google.maps.ControlPosition.RIGHT_CENTER
},
scaleControl: false,
streetViewControl: true,
streetViewControlOptions: {
position: google.maps.ControlPosition.RIGHT_BOTTOM
}
};
var map = new google.maps.Map(mapCanvas, mapOptions);
var locations = [
['palace', 52.231871, 21.005841],
['arkadia', 52.257305, 20.984481],
['stadium', 52.215147, 21.035074]
];
var marker, i;
var infowindow = new google.maps.InfoWindow();
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
map.setZoom(14);
map.setCenter(marker.getPosition());
}
})(marker, i));
}}google.maps.event.addDomListener(window, 'load', initialize);
我尝试使用本教程:http://www.daveoncode.com/2008/11/17/playing-with-google-maps-api-part-two-create-custom-controls/
但它似乎太旧了(无法识别“GControl”对象)。无论如何,我不确定我是否尝试以一种好的方式应用它。
最佳答案
使用 Custom Controls Example 中的代码在 the documentation
这会将四个控件放在 map 上:
然后为其添加点击监听器,并通过向指定方向移动 map 跨度的 1/2 来处理点击事件。
代码片段:
function initialize() {
var mapCanvas = document.getElementById('map');
var mapOptions = {
zoom: 12,
center: {
lat: 52.237442,
lng: 21.003692
},
mapTypeControl: false,
zoomControl: true,
zoomControlOptions: {
position: google.maps.ControlPosition.RIGHT_BOTTOM
},
scaleControl: false,
streetViewControl: true,
streetViewControlOptions: {
position: google.maps.ControlPosition.RIGHT_BOTTOM
}
};
var map = new google.maps.Map(mapCanvas, mapOptions);
var locations = [
['palace', 52.231871, 21.005841],
['arkadia', 52.257305, 20.984481],
['stadium', 52.215147, 21.035074]
];
var marker, i;
var infowindow = new google.maps.InfoWindow();
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
map.setZoom(14);
map.setCenter(marker.getPosition());
}
})(marker, i));
}
var controlText = [
['N', google.maps.ControlPosition.TOP_CENTER],
['W', google.maps.ControlPosition.LEFT_CENTER],
['E', google.maps.ControlPosition.RIGHT_CENTER],
['S', google.maps.ControlPosition.BOTTOM_CENTER],
];
for (var i = 0; i < controlText.length; i++) {
var divLabel = controlText[i][0];
var divName = document.createElement('div');
var newDiv = new MakeControl(divName, divLabel, map);
map.controls[controlText[i][1]].push(divName);
google.maps.event.addDomListener(divName, 'click', function() {
alert(controlText[i][0]);
});
}
}
google.maps.event.addDomListener(window, 'load', initialize);
/**
* Creates a series of custom controls to demonstrate positioning
* of controls within a map.
*/
/**
* MakeControl adds a control to the map.
* This constructor takes the controlDIV name and label text as arguments.
* @constructor
* @param {!Element} controlDiv The name of the DIV element for the control.
* @param {string} label Text to display within the DIV element.
*/
function MakeControl(controlDiv, label, map) {
// Set up the control border.
var controlUI = document.createElement('div');
controlUI.title = label;
controlUI.className = 'controlUI';
controlUI.style.cursor = 'pointer';
controlDiv.appendChild(controlUI);
// Set up the inner control.
var controlText = document.createElement('div');
controlText.innerHTML = label;
controlText.className = 'controlText';
controlUI.appendChild(controlText);
// Setup the click event listeners: simply set the map to Chicago.
controlUI.addEventListener('click', function() {
var bounds = map.getBounds();
var span = bounds.toSpan();
switch (label) {
case "N":
map.setCenter(new google.maps.LatLng(map.getCenter().lat() + span.lat() / 2, map.getCenter().lng()));
break;
case "S":
map.setCenter(new google.maps.LatLng(map.getCenter().lat() - span.lat() / 2, map.getCenter().lng()));
break;
case "E":
map.setCenter(new google.maps.LatLng(map.getCenter().lat(), map.getCenter().lng() + span.lng() / 2));
break;
case "W":
map.setCenter(new google.maps.LatLng(map.getCenter().lat(), map.getCenter().lng() - span.lng() / 2));
break;
}
});
}
html,
body,
#map {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px
}
.controlUI {
background-color: #fff;
border: 2px solid #fff;
border-radius: 3px;
box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
margin-bottom: 22px;
text-align: center;
}
.controlText {
color: rgb(25, 25, 25);
font-family: Roboto, Arial, sans-serif;
font-size: 12px;
line-height: 18px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="map"></div>
关于javascript - 向 Google Maps API 添加北/南/东/西控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33946169/
我有两张表,一张表包含国家及其北、东、南和西坐标,每个国家的矩形,这是结构, +--------------+----------------------+------+-----+---------
我想知道矩阵除对角线之外的 4 个主要区域的条件。 例如下面的矩阵 A=[1,2,3,4,5; 6,7,8,9,10; 11,12,13,14,15; 16,17,18,19,20;
我正在开发一个 2D 程序生成的 Unity 游戏,我想知道如何获得四个基本方向(N、E、S、W)以及四个基本方向(NE)上的所有邻居、东南、西南、西北)。 我正在努力实现的示例: 最佳答案 如果我们
let latitude: = 36.6839559; let longitude = 3.6217802; 此API需要东西南北参数 const API = `http://api.geonames
我正在一个应用程序上做一个项目,我需要根据我当前的位置发现其他设备。 我想以某种方式过滤这些设备,按照设备指向的北/南/东/西进行分类。 我读到一些文章说将 compass 方位转换为纬度和经度,但我
我一直在为元素周期表的 GUI 编写代码。我的一切看起来都很好,但是我添加到东、西和南边界(金属、非金属和镧系元素)的许多按钮都有一个“...”作为按钮的文本,而不是中心的元素符号(过渡金属)。这是因
有人知道如何调整 GWT DockLayoutPanel 的子面板的大小吗?当我添加一个方向面板时,我必须给它一个大小,即: panel.addSouth(new HTML("south"), 2);
我仍在为我正在尝试制作的迷宫游戏编写 Cell 类(class)。在获得不同线程的帮助后,有人建议我为我的墙壁/邻居使用 EnumMap,到目前为止效果很好。 这是我目前所拥有的: enum Dir
我正在尝试将北/南/东/西控件添加到我网站上的谷歌地图 API。 它们应该如下所示: 目前我的 map JS 代码如下所示: function initialize() { var mapCanvas
我想计算正在行驶的车辆的加速度。到目前为止,我能够使用以下公式获得沿航向矢量的加速度 a = (velocity(now)-velocity(previous))/time m/s^2 示例:一辆汽车
我希望能够计算 map View 上当前不在屏幕 View 中的标记是否位于屏幕的上方、右侧、下方或左侧。 我已经编写了一些代码来返回哪些标记当前位于屏幕的当前边界之内和之外,但我对下一步该做什么有点
我是一名优秀的程序员,十分优秀!