- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下代码将鼠标事件附加到 groundOverlay 功能:
var groundOverlay = ge.createGroundOverlay('');
var icon = ge.createIcon('');
icon.setHref("http://www.google.com/logos/earthday08.gif");
groundOverlay.setIcon(icon);
var latLonBox = ge.createLatLonBox('');
latLonBox.setBox(48.80, 48.75, -121.77, -121.85, 0);
groundOverlay.setLatLonBox(latLonBox);
ge.getFeatures().appendChild(groundOverlay);
google.earth.addEventListener(groundOverlay, 'click', function(e) {
e.preventDefault();
console.log("hello");
});
但是点击没有结果。有什么想法吗?
谢谢!账单
最佳答案
由于 KmlGroundOverlays 尚未生成鼠标事件,另一种解决方法是从地球接收鼠标事件,然后确定鼠标是否在覆盖范围内(“点击测试”)。下面是使用 mouseMove 事件执行此操作的代码的起点。它生成两个重叠的叠加层(一个旋转)并将鼠标下方的叠加层带到表面(通过操纵 drawingOrder)。
它在自己的结构中维护有关叠加层的信息(而不是遍历 KML,这可能是可能的)。
我无法找到从 GE 获取旋转叠加层顶点位置的方法,因此旋转是使用笛卡尔近似在代码中完成的。此代码可能会在极点、边界或大多边形上中断。
一旦顶点已知,在鼠标移动时运行的 HitTest 将基于 How can I determine whether a 2D Point is within a Polygon? 上的精彩讨论。
所以这段代码说明了以下方面的起始想法:
http://jsfiddle.net/pudkg/ 有演示
这是代码和html:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"> </script>
<script type="text/javascript">
var ge;
var overlays = []; // record information about overlays (filled by 'addOverlay')
var drawOrder = 0; // drawOrder value of topmost overlay
google.load("earth", "1");
function Point (lat, lon) {
this.lat = lat;
this.lon = lon;
}
function Overlay (groundOverlay, points, drawOrder) {
this.overlay = groundOverlay; // KML object
this.points = points; // array of Points (vertices of overlay)
this.drawOrder = drawOrder; // integer, higest displayed topmost
}
Overlay.prototype.hitTest = function (lat, lon) { // return true if lat/lon is within overlay
// Based upon https://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test
var isInside = false;
var minLon = this.points[0].lon, maxLon = this.points[0].lon;
var minLat = this.points[0].lat, maxLat = this.points[0].lat;
for (var n = 1; n < this.points.length; n++) {
var q = this.points[n];
minLon = Math.min(q.lon, minLon);
maxLon = Math.max(q.lon, maxLon);
minLat = Math.min(q.lat, minLat);
maxLat = Math.max(q.lat, maxLat);
}
if (lon < minLon || lon > maxLon || lat < minLat || lat > maxLat)
return false;
var i = 0, j = this.points.length - 1;
for (i, j; i < this.points.length; j = i++)
if ( (this.points[i].lat > lat) != (this.points[j].lat > lat) &&
lon < (this.points[j].lon - this.points[i].lon) * (lat - this.points[i].lat) /
(this.points[j].lat - this.points[i].lat) + this.points[i].lon )
isInside = !isInside;
return isInside;
}
function init() {
google.earth.createInstance('map3d', initCB, failureCB);
}
function initCB(e) {
ge = e;
ge.getWindow().setVisibility(true);
var lat = 37.204193;
var lon = -112.934429;
var dlat = 0.003;
var dlon = 0.005;
var offset = 0.004;
var la = ge.createLookAt(''); // position camera
la.set(lat, lon, 0, ge.ALTITUDE_RELATIVE_TO_GROUND, 0, 30, 2000);
ge.getView().setAbstractView(la);
for (var i = 0; i < 2; i++) // generate two overlays, overlapping; second one rotated
addOverlay('http://www.google.com/logos/earthday08.gif',
lat + dlat + offset*i, lat - dlat + offset*i,
lon + dlon + offset*i, lon - dlon + offset*i, 30*i);
// KML overlays can't (yet) generate mouse events, so look for events from globe
google.earth.addEventListener(ge.getGlobe(), 'mousemove', function(event) {
var lat = event.getLatitude();
var lon = event.getLongitude();
// show that a move event was received:
document.getElementById('logMove').innerHTML = event.getLatitude();
topmost = -1, zMax = 0; // find topmost overlay
for (var i = overlays.length - 1; i >= 0; i--)
if (overlays[i].hitTest(lat, lon)) { // if mouse is within overlays[i]
document.getElementById('logHit').innerHTML = i + '; ' + overlays[i].drawOrder;
if (overlays[i].drawOrder > zMax) { // if this overlay is higher than any previous
topmost = i;
zMax = overlays[i].drawOrder;
}
}
if ((topmost >= 0) && (overlays[topmost].drawOrder < drawOrder)) {
// if in an overlay and it is buried, make it top-most
overlays[topmost].overlay.setDrawOrder(++drawOrder);
overlays[topmost].drawOrder = drawOrder; // update local structure
}
document.getElementById('logOver').innerHTML = topmost + '; ' + zMax;
});
}
function addOverlay(url, north, south, east, west, rotation) {
var groundOverlay = ge.createGroundOverlay(''); // create overlay
var icon = ge.createIcon('');
icon.setHref(url);
groundOverlay.setIcon(icon);
var latLonBox = ge.createLatLonBox('');
latLonBox.setBox(north, south, east, west, rotation);
groundOverlay.setLatLonBox(latLonBox);
groundOverlay.setDrawOrder(++drawOrder);
ge.getFeatures().appendChild(groundOverlay);
var points = []; // figure out lat/lon of the corners of the overlay
var sinTheta = Math.sin(rotation * Math.PI / 180.0);
var cosTheta = Math.cos(rotation * Math.PI / 180.0);
// rotation is about the center of the overlay; find midpoint:
var midPoint = new Point((north + south) / 2, (west + east) / 2);
// To do cartesian rotation, need to consider that the distance between
// units of longitude diminish as one goes north, to zero at pole:
var cosLat = Math.cos(midPoint.lat * Math.PI / 180.0); // longitude compression factor
west = (west - midPoint.lon) * cosLat, east = (east - midPoint.lon) * cosLat;
north -= midPoint.lat, south -= midPoint.lat;
// use cartesian rotation (good enough approximation for UI away from pole, boundaries)
// after rotation, restore (expand) longitudes by compression factor
points.push(new Point(midPoint.lat + west * sinTheta + north * cosTheta,
midPoint.lon + (west * cosTheta - north * sinTheta) / cosLat));
points.push(new Point(midPoint.lat + east * sinTheta + north * cosTheta,
midPoint.lon + (east * cosTheta - north * sinTheta) / cosLat));
points.push(new Point(midPoint.lat + east * sinTheta + south * cosTheta,
midPoint.lon + (east * cosTheta - south * sinTheta) / cosLat));
points.push(new Point(midPoint.lat + west * sinTheta + south * cosTheta,
midPoint.lon + (west * cosTheta - south * sinTheta) / cosLat));
overlays.push(new Overlay(groundOverlay, points, drawOrder));
}
function failureCB(errorCode) {
alert("GE init fail");
}
google.setOnLoadCallback(init);
</script>
</head>
<body>
<div id=map3d style='height: 400px; width: 600px'></div>
<p>Mouse over the two overlays. The one under the mouse should come to surface.</p>
<p>Latitude of mouse: <span id=logMove></span></p>
<p>Index of last overlay hit; its drawOrder: <span id=logHit></span></p>
<p>Index of topmost overlay; max drawOrder: <span id=logOver></span></p>
</body>
</html>
关于javascript - 在 Google Earth Plug-in API 中将事件附加到 groundOverlay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12956636/
我正在开发 Android Weather 应用程序,我的要求是显示动画预报。我们有一个服务器,我从那里使用 Glide 将预测图像加载为位图,然后使用位图创建 GoogleMap 的 GroundO
关于在 map 上定位图像并给出其边界,Google map 的文档指出: When the image is drawn on the map it will be rotated to fit t
我正在尝试将我多年前编写的 GM v2 脚本转换为 v3。 在地面叠加层(天气雷达图)上时,我遇到了鼠标事件的问题。我知道 v3 没有与 v2 相反的实现。 只要鼠标不在叠加层上,事件就会正常工作。
我需要通过脉冲动画显示位置 A 和位置 B。我可以使用下面的代码来实现。但我面临的问题是 GroundOverlay 在缩放级别更改时更改其大小。如果位置 A 和 B 彼此靠近(即 map 放大级别高
我有一个 .tif 文件(卫星图像)和一个相应的 .tfw 文件。我已经成功地转换了从世界文件中提取的坐标 (lat/lng),并且我已经使用 Photoshop 将 .tif 文件转换为 .png
我正在将 10 个 GroundOverlays 加载到 GoogleMap 上,并希望显示与加载图像相关的进度。 var imageBounds = new google.maps.LatLngBo
我有一个问题让我抓狂了两天。 我们有一个 Google map 应用程序,可以提取 KML 文件以将历史 map 显示为图像叠加层。大约上周,我们的应用程序开始显示非常模糊的图像,这些图像是从 goo
我找不到与此相关的任何文档。我观察到我的图像在 Android 中加载到谷歌地图 GroundOverlay 时默认情况下是抗锯齿的。谷歌地图 GroundOverlays 是否默认启用抗锯齿? 最佳
我的 GoogleMap 上有一个 GroundOverlay,我希望它的尺寸在我放大/缩小 map 时不会改变。与始终保持其尺寸的默认 map markers 完全一样。我已经尝试过两种形式的
我在我的 Android 应用程序中使用 GoogleMaps,我想在 map 上显示动画雷达图像。 我有一个包含 6 个位图的数组。当用户点击播放时, map 会循环显示 map 上的每个图像。 这
很简单的问题。 我在 KML 中定义了一些 Polygons 和 GroundOverlays。有没有办法指定它们应该是可点击的,并且(至少在谷歌地球中)在点击它们时弹出一个信息气球或类似的东西? 同
对于我正在开发的应用程序,我想制作一个图像叠加层。在 iOS 上,我为此使用了 Google Maps API,效果很好。但是使用完全相同的设置、配置和 API,它在 Android 上不起作用。这是
我已经设置了一个 UIView 以使用 Google map 显示 map 的特定区域。我现在想在这个选定区域的顶部添加一个图像叠加层,但我不知道如何为此计算正确的坐标。我已将 map 设置为中心坐标
我正在制作 map 元素,用于在 map 上添加形状和位置并保存它。 但是我遇到了 groundoverlay 的问题。 我知道谷歌地图文档中没有旋转属性。但我需要一种方法/技巧来通过任何其他方式旋转
我有一个 iOS 应用程序,我想在其中读取包含 GroundOverlays 的 KML 文件。 GroundOverlay 包含图像 href、北、南、东、西坐标以及旋转。 我按照本教程 ( htt
我正在使用谷歌地图作为天气信息显示网络。 我想显示过去 7 天的云状况。 我正在使用叠加层在我的网络上显示云。 现在我的问题是我们可以使用 javascript 更改 google.maps.Grou
使用 react-google-maps以 GroundOverlay 为例组件为例(参见 https://github.com/khpeek/beomaps/blob/master/src/App.
我正在尝试使用以下代码将鼠标事件附加到 groundOverlay 功能: var groundOverlay = ge.createGroundOverlay(''); v
我有一个应用程序,用户可以在其中将图像加载到 Google map 上。这是为 2.3 开发的,因此有一个 MapActivity、一个 MapView 和显示图像的自定义 Overlay 类。在覆盖
我正在使用 android google maps API V2,我想在 map 特征(例如,街道名称、城镇名称、公园等)之上绘制一个 GroundOverlay。现在,我的 GroundOverla
我是一名优秀的程序员,十分优秀!