- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 html 页面,可以在我的本地计算机上完美运行,并且我在旧服务器中也有相同的页面,并且它也可以运行。
现在,我们尝试迁移到新服务器,但出现脚本错误。
每当我尝试加载谷歌地图 html 代码时,我永远不会显示任何内容,并且收到以下错误:
ReferenceError:未定义 google
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
.etiqueta {
font-size: 9pt;
font-family: 'Microsoft Sans Serif';
}
.valor {
width: 95%;
}
</style>
<script type="text/javascript">
var gmap;
var myPano = null;
var puntolatlon;
var prmDir;
var geocoder;
var geoMarker;
var prmLngX = null;
var prmLatY = null;
var prmYaw = null;
var prmPitch = null;
var prmZoom = null;
var prmDir = null;
var iconoFarmacia = {
anchor: new google.maps.Point(8, 9),
url: './iconos/iconoFarmacia.png',
size: new google.maps.Size(16, 16)
};
google.maps.event.addDomListener(window, 'load', initialize);
function initialize()
{
var mapOptions =
{
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: false,
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: true,
overviewMapControl: true,
overviewMapControlOptions: { opened: true }
};
gmap = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
geocoder = new google.maps.Geocoder();
//obtenemos los parametros que nos vienen en la URL
URL = location.href;
//longitud
if ((URL).search('longitudX') != -1) { prmLngX = leeParametros('longitudX'); }
//latitud
if ((URL).search('latitudY') != -1) { prmLatY = leeParametros('latitudY'); }
//yaw
if ((URL).search('yaw') != -1) { prmYaw = leeParametros('yaw'); }
//pitch
if ((URL).search('pitch') != -1) { prmPitch = leeParametros('pitch'); }
//zoom
if ((URL).search('zoom') != -1) { prmZoom = leeParametros('zoom'); }
//direccion
if ((URL).search('direccion') != -1)
{
prmDir = leeParametros('direccion');
prmDir = unescape(prmDir);
if (prmDir != "") {
document.getElementById('txtCalle').value = prmDir;
}
}
else
{
//una direccion por defecto
prmDir = 'Conselleria de sanidade, San Lazaro, 15703 Santiago de Compostela';
document.getElementById('txtCalle').value = prmDir;
}
if ( (prmLngX == null || prmLatY == null) && prmDir !=null )
{
// si no tenemos coordenadas obtenemos a partir de la direccion que viene en el parametro
if (geocoder)
{
geocoder.geocode(
{
'address': prmDir,
region: 'ES'
},
function(results, status)
{
if (status == google.maps.GeocoderStatus.OK)
{ var locResultado = results[0].geometry.location;
gmap.setCenter(locResultado);
gmap.setZoom(15);
addResultadoAMapa(locResultado);
inicializarTrasResultado(locResultado);
}
else
{
alert(prmDir + ": dirección no encontrada: " + status);
}
}
);
}
}
else if (prmLngX != null && prmLatY != null)
{
var puntoCoord = new google.maps.LatLng(prmLatY, prmLngX);
gmap.setCenter(puntoCoord);
gmap.setZoom(15);
if (prmYaw == null || prmPitch == null || prmZoom == null)
{ //buscamos solo por coordenadas
addResultadoAMapa(puntoCoord);
}
else
{ //buscamos coordenas y yaw, pitch y zoom --> por todo
addResultadoAMapa(puntoCoord, prmYaw, prmPitch, prmZoom);
}
inicializarTrasResultado(puntoCoord);
}
else
{
alert("Parámetros de búsqueda incompletos");
}
}
function inicializarTrasResultado(puntoCoord)
{
if (geoMarker) geoMarker.setMap(null);
//ponemos una marca encima de las coordenadas en el mapa
geoMarker = new google.maps.Marker({
map: gmap,
position: puntoCoord,
icon: iconoFarmacia
});
//var streetViewLayer = new google.maps.StreetViewCoverageLayer();
//streetViewLayer.setMap(gmap);
}
function addResultadoAMapaGenerico(panoramaOptions, zoomAux)
{
myPano = new google.maps.StreetViewPanorama(document.getElementById("streetviewpanoramadiv"), panoramaOptions);
gmap.setStreetView(myPano);
myPano.setVisible(true);
var stvService = new google.maps.StreetViewService();
stvService.getPanoramaByLocation(myPano.getPosition(), 50, disponibilidadStreetview);
document.getElementById("txtLong").value = redond(myPano.getPosition().lng(), 6);
document.getElementById("txtLat").value = redond(myPano.getPosition().lat(), 6);
document.getElementById("txtZoom").value = redond(zoomAux, 0);
document.getElementById("txtYaw").value = redond(myPano.getPov().heading, 6);
document.getElementById("txtPitch").value = redond(myPano.getPov().pitch, 6);
google.maps.event.addListener(myPano, "error", handleNoFlash);
google.maps.event.addListener(myPano, "pov_changed", onPovChange);
google.maps.event.addListener(myPano, "initialized", onNewLocation);
google.maps.event.addListener(myPano, 'position_changed', onPositionChanged);
google.maps.event.addListener(gmap.getStreetView(), 'visible_changed', onVisibilityChanged);
}
function addResultadoAMapa(puntoLatLon)
{
var yaw = null;
var pitch = null;
var punto = puntoLatLon;
var panoramaOptions =
{
position: puntoLatLon,
pov: {
heading: yaw,
pitch: pitch
}
};
addResultadoAMapaGenerico(panoramaOptions, myPano.getZoom());
}
function addResultadoAMapa(puntolatlon, yaw, pitch, zoom)
{
if (isNaN(yaw)) { yaw = 0; }
if (isNaN(pitch)) { pitch = 0; }
if (isNaN(zoom)) { zoom = 0; }
var yawAux = yaw;
var pitchAux = pitch;
var zoomAux = zoom;
var punto = puntolatlon;
var panoramaOptions = {
position: puntolatlon,
pov: {
heading: redond(yawAux, 6),
pitch: redond(pitchAux, 6),
zoom: redond(zoomAux, 6)
}
};
addResultadoAMapaGenerico(panoramaOptions, zoomAux);
}
function disponibilidadStreetview(result, status)
{
if (status != google.maps.StreetViewStatus.OK)
{
document.getElementById("txtError").value = " 'Streetview' no disponible en la ubicación.";
document.getElementById("map_canvas").style.height = 580 + 'px';
document.getElementById("streetviewpanoramadiv").style.height = 0 + 'px';
}
}
function redond(num, ndec) {
var fact = Math.pow(10, ndec);
/* Se desplaza el punto decimal ndec posiciones,
se redondea el numero y se vuelve a colocar
el punto decimal en su sitio. */
return Math.round(num * fact) / fact;
}
function handleNoFlash(errorCode) {
document.getElementById("txtError").value = " 'Streetview' no disponible en la ubicación.";
//mostramos el mapa mas grande ya que no hay streetview
document.getElementById("map_canvas").style.height = 580 + 'px';
document.getElementById("streetviewpanoramadiv").style.height = 0 + 'px';
}
function onPovChange() {
document.getElementById("txtZoom").value = redond(myPano.getZoom(), 0);
document.getElementById("txtYaw").value = redond(myPano.getPov().heading, 6);
document.getElementById("txtPitch").value = redond(myPano.getPov().pitch, 6);
}
function onNewLocation(point) {
//para que funcione correctamente debo intercambiar los valores
document.getElementById("txtLong").value = redond(point.lng(), 6);
document.getElementById("txtLat").value = redond(point.lat(), 6);
}
function onPositionChanged() {
//para que funcione correctamente debo intercambiar los valores
document.getElementById("txtLong").value = redond(myPano.getPosition().lng(), 6);
document.getElementById("txtLat").value = redond(myPano.getPosition().lat(), 6);
var stvService = new google.maps.StreetViewService();
stvService.getPanoramaByLocation(myPano.getPosition(), 50, disponibilidadStreetview);
}
function onVisibilityChanged()
{
if (this.getVisible() == false)
{
document.getElementById("txtError").value = " 'Streetview' no disponible en la ubicación.";
document.getElementById("map_canvas").style.height = 580 + 'px';
document.getElementById("streetviewpanoramadiv").style.height = 0 + 'px';
if (geoMarker)
{
document.getElementById("txtLong").value = redond(geoMarker.getPosition().lng(), 6);
document.getElementById("txtLat").value = redond(geoMarker.getPosition().lat(), 6);
}
}
else
{
document.getElementById("txtError").value = "";
document.getElementById("map_canvas").style.height = 296 + 'px';
document.getElementById("streetviewpanoramadiv").style.height = 288 + 'px';
}
}
function hasErrorOccurred(error)
{
if (error)
{
alert("Error " + error.code + ": " + (error.message || (error.details && error.details.join(" ")) || "Unknown error"));
return true;
}
return false;
}
//funcion que lee los parametros de la URL
function leeParametros(name)
{
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + name + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
if (results == null)
return "";
else
//necesario la funcion unescape porque algunos navegadores pintan los espacios como %20
return unescape(results[1]);
}
</script>
</head>
<body bgcolor="lightgrey">
<form id="form1" runat="server" action="#">
<div id="map_canvas" style="height: 296px; width: 100%;"></div>
<br />
<div id="streetviewpanoramadiv" style="height: 288px; width: 100%;"></div>
<br />
<fieldset style="width: 824px" align="center">
<legend class="etiqueta">Datos Localización</legend>
<table>
<tr>
<td style="width: 95px"><label for="txtLong" ID="lblLon" class="etiqueta">Lon. (X):</label></td>
<td style="width: 310px"><input type="text" ID="txtLong" class="valor" disabled /></td>
<td style="width: 95px"><label for="txtLat" ID="lblLat" class="etiqueta">Lat. (Y):</label></td>
<td style="width: 310px"><input type="text" ID="txtLat" class="valor" disabled /></td>
</tr>
<tr>
<td style="width: 95px"><label for="txtYaw" ID="lblYaw" class="etiqueta">Yaw:</label></td>
<td style="width: 310px"><input type="text" ID="txtYaw" class="valor" disabled /></td>
<td style="width: 95px"><label for="txtPitch" ID="lblYaw" class="etiqueta">Pitch:</label></td>
<td style="width: 310px"><input type="text" ID="txtPitch" class="valor" disabled /></td>
</tr>
<tr>
<td style="width: 95px"><label for="txtZoom" ID="lblZoom" class="etiqueta">Zoom:</label></td>
<td style="width: 310px"><input type="text" ID="txtZoom" class="valor" disabled /></td>
<td style="width: 95px"><label for="txtError" ID="lblError" class="etiqueta">Descripción:</label></td>
<td style="width: 310px"><input type="text" ID="txtError" class="valor" disabled /></td>
</tr>
<tr>
<td style="width: 95px"><label for="txtCalle" ID="lblCalle" class="etiqueta">Ubicación:</label></td>
<td colspan="3" ><input type="text" ID="txtCalle" disabled style="width: 706px; text-transform :uppercase"/></td>
</tr>
<tr>
<td style="width: 95px"></td>
<td style="width: 310px"></td>
<td style="width: 90px"></td>
<td style="width: 310px" align="right"></td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
有人明白发生了什么吗?谢谢,这是我在 stackoverflow 上的第一篇文章。我们新机器里有IE9。我的新服务器是 Windows 2008 R2,SO 64 位,旧服务器是 Windows 2003,32 位。非常感谢您的帮助。
最佳答案
使用这个库
<script src='http://maps.google.com/maps/api/js?sensor=false&libraries=drawing&dummy=.js' type='text/javascript'></script>
关于javascript - Google map API V3 - 引用错误 : Google is not defined - script error in Windows 2008 R2 new machine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32694849/
我有一个 k*n矩阵 X 和 k*k矩阵A。对于X的每一列,我想计算标量 X[:, i].T.dot(A).dot(X[:, i]) (或者,数学上, Xi' * A * Xi )。 目前,我有一个
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我是 VueJS 的新手。我已经使用 vuetify/webpack-ssr 模板创建了一个项目,现在我想创建一个登录页面,但是没有显示表单,控制台给了我以下信息: [Vue warn]: Unkno
我尝试将 value 插入到 C++ vector v 之前的第 i 元素(或元素 (i-1) 之后) )。代码很简单 v.insert(v.begin() + i, value); 我确信当 i 介
我需要显示使用合并排序算法排序的 vector 。然而,当我使用 v.begin() 时,我的 friend 使用 v.data() 来传递 vector 。他的代码运行良好,而我的却不行。请解释。
这是我的命令(url1、url2、url3、url4 是占位符): ffmpeg -i url1 -i url2 -i url3 -i url4 -filter_complex “[1:v:0] [1
我以前用过Vue,我知道怎么用v-for渲染元素序列,v-if或v-show有条件地显示元素,并且 v-model例如,控制段落的内容。 但现在我需要对 DOM 进行更精细的控制: 我有一个range
我正在学习所有权和借用。 borrow1 和borrow2 的区别在于在borrow2 打印时使用了&: fn borrow1(v: &Vec) { println!("{}", &v[10]
我找不到一种方法来选择不同的选项来渲染 v-for 中的文本。是否有可能或者我是否需要以不同的方式构建逻辑来执行类似于下面的代码的操作? // i
Iterable 的三个直接子类型是 Map , Seq , 和 Set .除了性能问题之外,似乎还有一个 Seq是从整数到值的映射,以及 Set是从值到 bool 值的映射(如果值在集合中,则为 t
我想应用一个计算方法,如果键存在则增加值,否则将 1。有 Map map = new HashMap<>(); 我不明白为什么 for (int i = 0; i v != null ? v++ :
标准(IEEE 754/C)是否保证以下代码断言永远不会失败? int main() { for ( /* all possible float / double values */ )
代码由Vue语言编写,使用Element-ui框架, 如果一个对象包含某些内容,则会显示该内容,如果不包含则禁用菜单按钮。 输出应该是这样的: a、b(禁用)、c、d、e 但我的是这样的: a、a(禁
如果我这样做: {{ morevalue }} {{ value }} v-else 中的跨度也会在第二个 V-FOR 上循环,即使它上面没有任何 v-for,为什么? 这是
如果我这样做: {{ morevalue }} {{ value }} v-else 中的跨度也会在第二个 V-FOR 上循环,即使它上面没有任何 v-for,为什么? 这是
我将 Vue.js 与 Vuetify 一起使用,我正在尝试使用 v-data-table 从后端加载菜单列表并使用 对其设置一些权限v-switches 但我在尝试 v-model 数组时遇到问题:
我在 Java 的流式操作中努力维护我想要的数据结构,这很可能是由于缺乏正确的理解和实践。 public class Main { public static void main(String
我正在尝试为匹配中的每个匹配呈现一些 HTML,但是,我不太确定 实际上是正确的。 更具体地说,我不确定我是否可以使用 v-bind:match='match'在与循环相同的元素上 v-for='ma
所以我想知道为什么这个 v-if 和 v-else 语句不起作用,为什么我要以不同的方式解决它。 代码如下 Required: Select a Workflow {{ isChain ?
我有一个 VueJS 组件 ,我在同一个模板中使用了两次来显示两组不同的数据。每个都显示在自己的 使用 v-if 切换的容器在导航选项卡上。 似乎这些组件被实例化为同一个实例。我调用 console
我是一名优秀的程序员,十分优秀!