- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试对代码进行一些调整,但开发人员无法再提供帮助。我对 GMaps api 和代码一无所知,但我仍在试图弄清楚。
问题是我们在 map 上有用户,我们希望 map 自动放大以包含所有用户。我们能够做到这一点。然而,我们有一个应该包含在其中的主要地址......所以我们想要做的是自动缩放到足够近以包括最远的点,无论它是用户还是主要地址。要进行演示,请查看下面的 URL:
http://app2.wehaveeyes.com/reports/maps/maps2.cfm
下面是代码:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<META HTTP-EQUIV="refresh" CONTENT="10">
<style>
/* Set the size of the div element that contains the map */
#map {
height: 100%; /* The height is the height of the web page */
width: 100%; /* The width is the width of the web page */
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.user_info {
background-color: ##0000;
font-weight: bold;
color: #fff;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?key=MY_API_KEY">
</script>
<script src="https://cdn.sobekrepository.org/includes/gmaps-markerwithlabel/1.9.1/gmaps-
markerwithlabel-1.9.1.js" type="text/javascript"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
// Initialize and add the map
function initMap() {
var xml_data = "<MAP>" +
"<location>1 South Main Street, Akron Ohio</location>" +
"<user_info>" +
"<user_name>Scott jones</user_name>" +
"<user_lat>41.141756</user_lat>" +
"<user_lon>-81.675599</user_lon>" +
"<user_img>https://s3.amazonaws.com/media.wbur.org/wordpress/1/files/2015/03/AP736858445562.jpg</user_img>" +
"</user_info>" +
"<user_info>" +
"<user_name>Bill James</user_name>" +
"<user_lat>41.142758</user_lat>" +
"<user_lon>-81.657274</user_lon>" +
"<user_img>https://s.abcnews.com/images/US/jeff-koenig-ht-ml-190122_hpEmbed_2_4x5_992.jpg</user_img>" +
"</user_info>" +
"<user_info>" +
"<user_name>Karrie Sims</user_name>" +
"<user_lat>41.135809</user_lat>" +
"<user_lon>-81.639336</user_lon>" +
"<user_img>https://www.odmp.org/media/image/officer/23891/orig/police-officer-natalie-corona.jpg</user_img>" +
"</user_info>" +
"<user_info>" +
"<user_name>John Smith</user_name>" +
"<user_lat>41.142855</user_lat>" +
"<user_lon>-81.637319</user_lon>" +
"<user_img>https://www.odmp.org/media/image/officer/24262/400/deputy-sheriff-jake-allmendinger.jpg</user_img>" +
"</user_info>" +
"<user_info>" +
"<user_name>Jim Deek</user_name>" +
"<user_lat>41.131543</user_lat>" +
"<user_lon>-81.653541</user_lon>" +
"<user_img>https://lawofficer.com/wp-content/uploads/2016/10/blakesnyder.jpg</user_img>" +
"</user_info>" +
"</MAP>";
var parser = new DOMParser();
var xmlDoc = parser.parseFromString(xml_data, "text/xml");
var address = xmlDoc.getElementsByTagName("location")[0].textContent;
var users = xmlDoc.getElementsByTagName("user_info");
var user_list = [];
for (var i = 0; i < users.length; i++) {
user_list.push({
"name": users[i].getElementsByTagName("user_name")[0].textContent,
"lat": users[i].getElementsByTagName("user_lat")[0].textContent,
"lng": users[i].getElementsByTagName("user_lon")[0].textContent,
"img": users[i].getElementsByTagName("user_img")[0].textContent
});
}
// The location of US
var map_center = {lat: 39.8283, lng: -98.5795};
// The map, centered at US
var map = new google.maps.Map(document.getElementById('map'), {zoom: 3, center: map_center});
// boundary of all pins
var bounds = new google.maps.LatLngBounds();
// converts address into geolocation with lat and lng
geocoder = new google.maps.Geocoder();
codeAddress(geocoder, map, address);
// adds user_info marker
for (const index in user_list) {
lat = parseFloat(user_list[index]["lat"]);
lng = parseFloat(user_list[index]["lng"]);
var point = {lat: lat, lng: lng}
var lbl_content = "<div style='text-align: center;'><div><img src='" +
user_list[index]["img"] +
"' width='30px' height='38px' style='border: 2px solid #000; display: block; margin: 0 auto;'></div>" +
"<div style='background-color: #000; padding: 2px;'>" +
user_list[index]["name"] +
"</div></div>";
var marker = new MarkerWithLabel({
position: point,
icon: {
url: "./res/police_pin.png",
scaledSize: new google.maps.Size(40, 40)
},
map: map,
title: user_list[index]["name"],
labelContent: lbl_content,
labelAnchor: new google.maps.Point(0, 0),
labelClass: "user_info",
labelInBackground: true
});
// extends boundary
bounds.extend(point);
// shows coordinate tooltip with 4-decisions
// var infowindow = new google.maps.InfoWindow({
// content: lat.toFixed(4) + ", " + lng.toFixed(4)
// });
// infowindow.open(map, marker);
}
// fits map
map.fitBounds(bounds);
}
/////////////////////////////////////////
/// converts address into geolocation ///
/////////////////////////////////////////
function codeAddress(geocoder, map, address) {
geocoder.geocode({'address': address}, function (results, status) {
if (status === 'OK') {
// relocates the map centered at address pin
// map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
icon: {url: "./res/911_call.png", scaledSize: new google.maps.Size(55, 55)}
});
// shows coordinate tooltip with 4-decisions
//lat = results[0].geometry.location.lat();
//lng = results[0].geometry.location.lng();
//var infowindow = new google.maps.InfoWindow({
// content: lat.toFixed(4) + ", " + lng.toFixed(4)
//});
//infowindow.open(map, marker);
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
////////////////////////////
/// reads local xml file ///
////////////////////////////
function readTextFile(file)
{
var allText = "";
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if (rawFile.readyState === 4)
{
if (rawFile.status === 200 || rawFile.status == 0)
{
allText = rawFile.responseText;
}
}
}
rawFile.send(null);
return allText;
}
initMap();
</script>
</body>
</html>
我已经浏览了很多板并尝试使用代码,但没有任何效果。任何帮助都会很棒。
非常感谢!!!
最佳答案
要确保 map 视口(viewport)内覆盖每个重要位置,您可以使用 map.fitBounds()
方法。根据这个doc ,这个方法
Sets the viewport to contain the given bounds.
我发现您已经实现了此方法来显示每个用户。也就是说,您只需在边界上添加(您所说的)主地址
。
要将主地址的坐标添加到边界实例中,您只需使用 bounds.extend()
方法。
我检查了site上的代码您可以采取以下措施来实现这一目标:
bounds
移至 initMap()
函数上方,使其成为全局变量。在您的 codeAddress()
函数中,通过扩展边界
来添加主地址
坐标。这是一个代码片段:
// Add the main address' coordinates by using bounds.extend method
// results[0].geometry.location contains the main address' coordinates
bounds.extend(results[0].geometry.location);
将 map.fitBounds()
方法移至步骤 #2 中 bounds.extend()
方法的正下方。
// fits map
map.fitBounds(bounds);
这是一个工作 fiddle这是基于您的代码。
关于javascript - Google map 进行调整以包含用户和地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58943290/
目前,我有以下设置: A记录: mydomain.com - aaa.aaa.aaa.aaa subdomain.mydomain.com - aaa.aaa.aaa.aaa NS记录: mydoma
有人可以帮助我以最佳方式在流畅的 nHibernate 中映射以下情况吗? Address 类用于 Client 和 Company。如何在 SQL 中最有效地存储它?映射应该是什么样的?我已经考虑过
我正在尝试编写一个 Windows 应用程序,它将在来自 PC 的以太网链接上生成流量。 我想使用 webBrowser 控件不断拉取网页以产生流量。 在这种情况下,我希望每个 webBrowser
我正在编写一个 SIP 堆栈,我需要在消息中插入一个 IP 地址。该地址必须是用于发送消息的地址。我知道目标 IP 并且需要确定将用于发送消息的 NIC(其地址).... 最佳答案 为了扩展 Remy
如何使用 IP 地址获取 MAC 地址,但以下代码不起作用 packet = ARP(op=ARP.who_has,psrc="some ip",pdst = ip) response = srp(p
目前我想知道如何实现对本地无线网络(路由器)的获取请求以获取当前连接到当前连接的 LAN 的所有设备.... 所以我做了一些研究,显然“nmap”是一个终端/命令提示符命令,它将连接的设备返回到本地无
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicates: how to find MAC address in MAC OS X programmatically
我们正在为 ipad 开发一个 iOS 应用程序,它使用 bonjour 与其他设备连接,使用 couchbaseListener 与对等数据库进行复制。我们观察到,每当 [nsnetservice
我创建了 3 个实例,其中 3 个弹性 IP 地址指向这些实例。 我做了 dsc 的 yum 安装:dsc12.noarch 1.2.13-1 @datastax 并且/etc/cassandra/d
我正在尝试获取规模集中所有虚拟机的私有(private) IP 地址列表(没有一个虚拟机故意拥有任何公共(public) IP 地址)。我找到了如何从 az cli 获取此内容,如下所示: az vm
我正在尝试获取规模集中所有虚拟机的私有(private) IP 地址列表(没有一个虚拟机故意拥有任何公共(public) IP 地址)。我找到了如何从 az cli 获取此内容,如下所示: az vm
我正在尝试与该端口上的任何 IP 建立连接。最初,我将其设置为 10.0.0.7,这是我网络上另一台计算机的 IP,因此我可以测试客户端/服务器。但是,我希望它可以与任何计算机一起使用而不必将 IP
作为序言,我开发了自己的 CRM(类似于 SalesForce 或 SAP),其“规模”要小得多,因为它面向服务,而不是销售。我在 Ubuntu 16.04 服务器上使用 MySql 或 MariaD
在我的项目中,我想做如下事情: static void test0(void) { printf("%s [%d]\n", __func__, __LINE__); } static void
我的机器上有两个网卡,配置了两个独立的 IP 地址。两个 IP 地址都属于同一个网络。我是否正确地说,当我创建一个特定于这些 IP 地址之一的套接字时? 更新: 这是我的情况: 我有一个位于 192.
当然,我意识到没有一种“正确的方法”来设计 SQL 数据库,但我想就我的特定场景中的优劣获得一些意见。 目前,我正在设计一个订单输入模块(带有 SQL Server 2008 的 Windows .N
我们将保存大量地址数据(在我公司的眼中,每个客户大约有150.000至500.000行)。 地址数据包含约5列: 名称1 名称2 街(+否) 邮政编码 市 也许以后再添加一些东西(例如电话,邮件等)
好的,我们在生产中实现了 Recaptcha。我们收到错误是因为它无法到达使用该服务所需的 IP 地址。我们为 IP 地址打开一个端口以到达 Google。没问题。我们这样做并显式配置该 IP 地址以
此页面使用 Drupals 联系表发送电子邮件:http://www.westlake.school.nz/contact 问题是,学校员工使用 outlook。当他们收到来自 parent 等的电子
是否可以将用户输入的邮政编码转换为文本框并将其转换为CLLocation?我正在尝试比较其当前位置与地址或邮政编码之间的距离,如果可以从NSString中创建CLLocation,这将很容易。 最佳答
我是一名优秀的程序员,十分优秀!