我正在Visual Studio 2017中创建一个简单的地图应用程序。我正在使用Openlayers v4.6.4来显示地图数据并将叠加多边形添加到地图上。
由于OpenLayers 4是一个JS库,我主要使用Internet Explorer,因为它允许我在Visual Studio 2017上的javascript文件中添加断点。
但我注意到,与OpenLayers关联的任何类的本地名称(如功能或几何)都不正确,似乎只是随机字符。
例如,我有一个以下代码,在地图上放置多边形时调用该代码:
// Event called when the user has finished drawing a polygon/point
draw.on('drawend', function (e) {
map.removeInteraction(draw); // Exits drawing mode and enters scroll mode
var geom = e.feature.getGeometry();
var format = ol.format.WKT;
var geomWKT2 = format.writeGeometry(geom);
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Update all client windows with the feature just drawn
$.connection.hub.start().done(function () { // Start the connection.
// Call the Send method on the hub.
chat.server.send(geomWKT, 'Luke');
});
})
但是,当我在Visual Studio调试器中查看此代码时,本地名称仅在e.feature之前是正确的,之后名称变得不可读:
图片中的本地名称当然应该有更准确的描述吗?
任何帮助将不胜感激。
答案 0 :(得分:0)
您正在使用ol.js
,这是缩小版。要减小文件大小,变量已减少为1或2个字母。
要进行调试,您应该使用ol-debug.js
,它更大但人类可读。