我将一个项目转移到webpack,将代码分成模块,但在某些地方,我遇到插件或其他代码希望map是一个可见的全局变量的情况。引发以下异常是因为地图没有公开:
onRemove: function() {
this._removeMarkers();
this.onMap = false;
map.off("moveend", this._update);
},
Uncaught ReferenceError: map is not defined
at NewClass.onRemove (leaflet.conditionalLayer.js:77)
SyntaxError</b>: Unexpected end of JSON input
at JSON.parse (<anonymous>)
at Response.Body.json (http.js:1091)
at MapSubscriber.project (auth.service.ts:29)
at MapSubscriber._next (map.js:79)
at MapSubscriber.Subscriber.next (Subscriber.js:93)
at CatchSubscriber.
我试图在已经初始化的映射中添加一个BingMaps层。我犯了一个我无法理解的错误。你知道怎么回事吗?我使用的是OpenLayers 5.3.1。
TypeError: r is null[Weitere Informationen] map.js:1:677385
• a http://localhost:8080/map/map.js:1
• inverse http://localhost:8080/map/map.js:1
• I http://localhost:8080/map/map.js:1
• transformInv_ h
几天前,我在遇到了一个问题,我得到了一个错误:
map.js:2 Uncaught TypeError: window.Map is not a constructor
at Xr (map.js:2)
at bs.setZIndex (map.js:54)
at ds.He (map.js:57)
at _.pl.Bb (map.js:60)
at Ot (map.js:44)
at map.js:45
它出现在每个页面上,其中某处有一张地图,并重复出现,有时会出现多达50个或更多错误。地图似乎在某种程度上定位了地理位置,但背景丢失了,只有大头
我有一张有新钥匙的谷歌地图
但它在控制台中会出错。
错误:
Uncaught TypeError: window.Map is not a constructor
at Zr (map.js:2)
at ds.release (map.js:53)
at gs (map.js:5)
at _.rl.Ab (map.js:59)
at map.js:46
HTML
<head>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=
我正在启动一个ember.js应用程序,旨在绘制和显示地图。
我使用的是ember.js v1.11.0和ol3 v3.4.0
我设法通过bower安装了ol3,并使用Brocfile.js导入了它:
app.import('bower_components/ol3/build/ol.js');
app.import('bower_components/ol3/css/ol.css');
我也可以在我的视图中使用它,等等。如果可能的话,我想要的是消除服务器错误:
views/map.js: line 6, col 22, 'ol' is not
我使用的是来自create-react-app的默认启动项目,其文件夹结构如下:
app
--public
----index.html
--src
----App.js
----components
-------map.js
我在index.html body标记中包含了一个外部CDN库。但是,我对如何在我的map.js组件中使用这个库的方法感到困惑。
只要在我的map.js中编写库方法,就会返回:
Failed to compile
./src/components/map.js
Line 5: 'L' is not defined no-undef
我是否可以
当设置maxZoom:18时,我在控制台中遇到错误
js:101 Uncaught RangeError: Maximum call stack size exceeded
at Py._.k.get (js:101)
at ly._.k.get (js:101)
at my (map.js:12)
at ly._.k.zoom_changed (map.js:40)
at Hb (js:38)
at ly._.k.set (js:101)
at my (map.js:12)
at ly._.k.zoom_changed (map
我使用传单地图与我的数据在一个csv文件作为标记。标记没有出现在地图上。不能解决这个问题。
map.js
'''
let path = "data/ppv_full.csv";
// create the map
function createMap(){
map = L.map('map').setView([0,0],3);
// function to read csv data
function readCSV(){
Papa.parse(path, {
header: true,
以下是当我运行我的Angular应用程序时出现的错误,其中包含一个mapbox。它不会在stackblitz中显示地图,而在本地计算机上运行时会显示。我已经在mapbox中添加了访问令牌。还有没有人遇到过这个问题?
AppComponent_Host.ngfactory.js? [sm]:1 ERROR Error: An API access token is required to use Mapbox GL. See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes
at N._mak
我有一个google应用程序,其中地图设置在js文件(map.js)中定义如下:
function initialize() {
var latlng = new google.maps.LatLng(42.133633, -11.469928);
var myOptions = {
zoom: 13,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new googl
如何从当前位置路由到目的地?错误显示"map.js:97未捕获TypeError:无法读取未定义的属性'geolocation‘“。下面是我的代码:
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var Latitude = undefined;
var Longitude = undefined;
// Get geo coordinates
function getMapLocation() {
directionsDis
在使用Apache和mod_wsgi (在mod_wsgi上)设置Django时,我遵循了TypeError,但是每当我尝试访问一个静态文件时,我都会得到以下错误:类型为'NoneType‘的TypeError at / static /js/map.js对象没有len()
这与document_root有关:
C:\Python27\lib\site-packages\django\core\handlers\base.py in get_response
TypeError("object of type 'NoneType' has no len()