bugfix naming

master
TuxCoder 2019-07-10 00:12:45 +02:00
parent 0be9e0a56d
commit 601f254c53
3 changed files with 5753 additions and 5551 deletions

11279
dist/main.js vendored

File diff suppressed because it is too large Load Diff

2
dist/main.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -114,28 +114,9 @@ var styles = {
}
};
var vectorSource = new VectorTileSource({
var vectorSource = new VectorSource({
format: new OSMXML(),
url: 'https://seafile.milliways.info/f/688170149668429f9598/?dl=1',
/*loader: function(extent, resolution, projection) {
var proj = projection.getCode();
var url = 'https://seafile.milliways.info/f/688170149668429f9598/?dl=1';
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
var onError = function(e) {
vectorSource.removeLoadedExtent(extent);
}
xhr.onerror = onError;
xhr.onload = function() {
if (xhr.status == 200) {
vectorSource.addFeatures(
vectorSource.getFormat().readFeatures(xhr.responseText));
} else {
onError();
}
}
xhr.send();
},*/
strategy: allStrategy
})
@ -149,7 +130,7 @@ var map = new Map({
new TileLayer({
source: new OSM()
}),
new VectorTileLayer({
new VectorLayer({
source: vectorSource,
style: function(feature) {
for (var key in styles) {