-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
example(MVT): add example with official MapBox flux
- Loading branch information
1 parent
b70b32d
commit 5581f1e
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<html> | ||
<head> | ||
<title>Itowns - Globe</title> | ||
|
||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="css/example.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="css/LoadingScreen.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="https://www.itowns-project.org/itowns/examples/css/widgets.css" | ||
/> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.6/dat.gui.min.js"></script> | ||
</head> | ||
<body> | ||
<div id="viewerDiv"></div> | ||
|
||
<!-- Import iTowns source code --> | ||
<script src="../dist/itowns.js"></script> | ||
<script src="../dist/debug.js"></script> | ||
<!-- Import iTowns Widgets plugin --> | ||
<script src="../dist/itowns_widgets.js"></script> | ||
<!-- Import iTowns LoadingScreen and GuiTools plugins --> | ||
<script src="js/GUI/GuiTools.js"></script> | ||
<script src="js/GUI/LoadingScreen.js"></script> | ||
|
||
<script> | ||
const typeView = 'Planar'; | ||
// const typeView = 'Globe'; | ||
|
||
// `viewerDiv` will contain iTowns' rendering area (`<canvas>`) | ||
var viewerDiv = document.getElementById('viewerDiv'); | ||
let view; | ||
|
||
if (typeView === 'Globe') { | ||
const coord = new itowns.Coordinates('EPSG:4326', 2.351323, 48.856712); // Paris | ||
// const coord = new itowns.Coordinates("EPSG:4326", 60.599525, 56.834341); // Yekaterinburg | ||
const placement = { | ||
coord, | ||
range: 950000, | ||
}; | ||
view = new itowns.GlobeView(viewerDiv, placement); | ||
} else if (typeView === 'Planar') { | ||
// Define geographic extent: CRS, min/max X, min/max Y | ||
var extent = new itowns.Extent( | ||
'EPSG:3857', | ||
-20037508.342789244, 20037508.342789244, | ||
-20037508.342789255, 20037508.342789244); | ||
|
||
// Instanciate PlanarView | ||
view = new itowns.PlanarView(viewerDiv, extent, { | ||
maxSubdivisionLevel: 20, | ||
controls: { | ||
// We do not want the user to zoom out too much | ||
maxAltitude: 40000000, | ||
// We want to keep the rotation disabled, to only have a view from the top | ||
enableRotation: false, | ||
// Don't zoom too much on smart zoom | ||
smartTravelHeightMax: 100000, | ||
}, | ||
}); | ||
} | ||
|
||
const debugMenu = new GuiTools("menuDiv", view); | ||
setupLoadingScreen(viewerDiv, view); | ||
|
||
const source = new itowns.VectorTilesSource({ | ||
style: "mapbox://styles/mapbox/streets-v8", | ||
accessToken: | ||
"pk.eyJ1IjoiZ2VvdXJmbyIsImEiOiJjbHdyZWVrd2owOW1rMmlxdmx2Z3Fwb2JhIn0.sg5en26yZ6aSEg6CsfUByA", | ||
}); | ||
|
||
const layer = new itowns.ColorLayer("vector-map", { | ||
source, | ||
noTextureParentOutsideLimit: true, | ||
addLabelLayer: true, | ||
}); | ||
|
||
view.addLayer(layer).then(() => { | ||
debugMenu.addLayerGUI.bind(debugMenu); | ||
itowns.ColorLayersOrdering.moveLayerToIndex(view, "vector-map", 15); | ||
}); | ||
|
||
debug.createTileDebugUI(debugMenu.gui, view); | ||
</script> | ||
</body> | ||
</html> |