Transformed
This commit is contained in:
@@ -1,74 +1,74 @@
|
||||
goog.require('ol.Map');
|
||||
goog.require('ol.View');
|
||||
goog.require('ol.control');
|
||||
goog.require('ol.format.OSMXML');
|
||||
goog.require('ol.layer.Tile');
|
||||
goog.require('ol.layer.Vector');
|
||||
goog.require('ol.loadingstrategy');
|
||||
goog.require('ol.proj');
|
||||
goog.require('ol.source.BingMaps');
|
||||
goog.require('ol.source.Vector');
|
||||
goog.require('ol.style.Circle');
|
||||
goog.require('ol.style.Fill');
|
||||
goog.require('ol.style.Stroke');
|
||||
goog.require('ol.style.Style');
|
||||
import _ol_Map_ from '../src/ol/Map.js';
|
||||
import _ol_View_ from '../src/ol/View.js';
|
||||
import _ol_control_ from '../src/ol/control.js';
|
||||
import _ol_format_OSMXML_ from '../src/ol/format/OSMXML.js';
|
||||
import _ol_layer_Tile_ from '../src/ol/layer/Tile.js';
|
||||
import _ol_layer_Vector_ from '../src/ol/layer/Vector.js';
|
||||
import _ol_loadingstrategy_ from '../src/ol/loadingstrategy.js';
|
||||
import _ol_proj_ from '../src/ol/proj.js';
|
||||
import _ol_source_BingMaps_ from '../src/ol/source/BingMaps.js';
|
||||
import _ol_source_Vector_ from '../src/ol/source/Vector.js';
|
||||
import _ol_style_Circle_ from '../src/ol/style/Circle.js';
|
||||
import _ol_style_Fill_ from '../src/ol/style/Fill.js';
|
||||
import _ol_style_Stroke_ from '../src/ol/style/Stroke.js';
|
||||
import _ol_style_Style_ from '../src/ol/style/Style.js';
|
||||
|
||||
var map;
|
||||
|
||||
var styles = {
|
||||
'amenity': {
|
||||
'parking': new ol.style.Style({
|
||||
stroke: new ol.style.Stroke({
|
||||
'parking': new _ol_style_Style_({
|
||||
stroke: new _ol_style_Stroke_({
|
||||
color: 'rgba(170, 170, 170, 1.0)',
|
||||
width: 1
|
||||
}),
|
||||
fill: new ol.style.Fill({
|
||||
fill: new _ol_style_Fill_({
|
||||
color: 'rgba(170, 170, 170, 0.3)'
|
||||
})
|
||||
})
|
||||
},
|
||||
'building': {
|
||||
'.*': new ol.style.Style({
|
||||
'.*': new _ol_style_Style_({
|
||||
zIndex: 100,
|
||||
stroke: new ol.style.Stroke({
|
||||
stroke: new _ol_style_Stroke_({
|
||||
color: 'rgba(246, 99, 79, 1.0)',
|
||||
width: 1
|
||||
}),
|
||||
fill: new ol.style.Fill({
|
||||
fill: new _ol_style_Fill_({
|
||||
color: 'rgba(246, 99, 79, 0.3)'
|
||||
})
|
||||
})
|
||||
},
|
||||
'highway': {
|
||||
'service': new ol.style.Style({
|
||||
stroke: new ol.style.Stroke({
|
||||
'service': new _ol_style_Style_({
|
||||
stroke: new _ol_style_Stroke_({
|
||||
color: 'rgba(255, 255, 255, 1.0)',
|
||||
width: 2
|
||||
})
|
||||
}),
|
||||
'.*': new ol.style.Style({
|
||||
stroke: new ol.style.Stroke({
|
||||
'.*': new _ol_style_Style_({
|
||||
stroke: new _ol_style_Stroke_({
|
||||
color: 'rgba(255, 255, 255, 1.0)',
|
||||
width: 3
|
||||
})
|
||||
})
|
||||
},
|
||||
'landuse': {
|
||||
'forest|grass|allotments': new ol.style.Style({
|
||||
stroke: new ol.style.Stroke({
|
||||
'forest|grass|allotments': new _ol_style_Style_({
|
||||
stroke: new _ol_style_Stroke_({
|
||||
color: 'rgba(140, 208, 95, 1.0)',
|
||||
width: 1
|
||||
}),
|
||||
fill: new ol.style.Fill({
|
||||
fill: new _ol_style_Fill_({
|
||||
color: 'rgba(140, 208, 95, 0.3)'
|
||||
})
|
||||
})
|
||||
},
|
||||
'natural': {
|
||||
'tree': new ol.style.Style({
|
||||
image: new ol.style.Circle({
|
||||
'tree': new _ol_style_Style_({
|
||||
image: new _ol_style_Circle_({
|
||||
radius: 2,
|
||||
fill: new ol.style.Fill({
|
||||
fill: new _ol_style_Fill_({
|
||||
color: 'rgba(140, 208, 95, 1.0)'
|
||||
}),
|
||||
stroke: null
|
||||
@@ -77,15 +77,15 @@ var styles = {
|
||||
}
|
||||
};
|
||||
|
||||
var vectorSource = new ol.source.Vector({
|
||||
format: new ol.format.OSMXML(),
|
||||
var vectorSource = new _ol_source_Vector_({
|
||||
format: new _ol_format_OSMXML_(),
|
||||
loader: function(extent, resolution, projection) {
|
||||
var epsg4326Extent =
|
||||
ol.proj.transformExtent(extent, projection, 'EPSG:4326');
|
||||
_ol_proj_.transformExtent(extent, projection, 'EPSG:4326');
|
||||
var client = new XMLHttpRequest();
|
||||
client.open('POST', 'https://overpass-api.de/api/interpreter');
|
||||
client.addEventListener('load', function() {
|
||||
var features = new ol.format.OSMXML().readFeatures(client.responseText, {
|
||||
var features = new _ol_format_OSMXML_().readFeatures(client.responseText, {
|
||||
featureProjection: map.getView().getProjection()
|
||||
});
|
||||
vectorSource.addFeatures(features);
|
||||
@@ -96,10 +96,10 @@ var vectorSource = new ol.source.Vector({
|
||||
');rel(bn)->.foo;way(bn);node(w)->.foo;rel(bw););out meta;';
|
||||
client.send(query);
|
||||
},
|
||||
strategy: ol.loadingstrategy.bbox
|
||||
strategy: _ol_loadingstrategy_.bbox
|
||||
});
|
||||
|
||||
var vector = new ol.layer.Vector({
|
||||
var vector = new _ol_layer_Vector_({
|
||||
source: vectorSource,
|
||||
style: function(feature) {
|
||||
for (var key in styles) {
|
||||
@@ -116,22 +116,22 @@ var vector = new ol.layer.Vector({
|
||||
}
|
||||
});
|
||||
|
||||
var raster = new ol.layer.Tile({
|
||||
source: new ol.source.BingMaps({
|
||||
var raster = new _ol_layer_Tile_({
|
||||
source: new _ol_source_BingMaps_({
|
||||
imagerySet: 'Aerial',
|
||||
key: 'As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5'
|
||||
})
|
||||
});
|
||||
|
||||
map = new ol.Map({
|
||||
map = new _ol_Map_({
|
||||
layers: [raster, vector],
|
||||
target: document.getElementById('map'),
|
||||
controls: ol.control.defaults({
|
||||
controls: _ol_control_.defaults({
|
||||
attributionOptions: {
|
||||
collapsible: false
|
||||
}
|
||||
}),
|
||||
view: new ol.View({
|
||||
view: new _ol_View_({
|
||||
center: [739218, 5906096],
|
||||
maxZoom: 19,
|
||||
zoom: 17
|
||||
|
||||
Reference in New Issue
Block a user