UNPKG

itowns

Version:

A JS/WebGL framework for 3D geospatial data visualization

105 lines (82 loc) 3.94 kB
<html> <head> <title>Itowns - FileSource - Handle parsing step</title> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="css/example.css"> <link rel="stylesheet" type="text/css" href="css/LoadingScreen.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.6/dat.gui.min.js"></script> </head> <body> <div id="viewerDiv" class="viewer"></div> <script src="js/GUI/GuiTools.js"></script> <script src="../dist/itowns.js"></script> <script src="../dist/debug.js"></script> <script src="js/GUI/LoadingScreen.js"></script> <script src="js/plugins/FeatureToolTip.js"></script> <script type="text/javascript"> /* global itowns, setupLoadingScreen, GuiTools, ToolTip */ // ---------- CREATE A GlobeView : ---------- // Define camera initial position const placement = { coord: new itowns.Coordinates('EPSG:4326', 3.05, 48.95), range: 70000, }; // `viewerDiv` will contain iTowns' rendering area (`<canvas>`) const viewerDiv = document.getElementById('viewerDiv'); // Instantiate iTowns GlobeView const view = new itowns.GlobeView(viewerDiv, placement); // Setup loading screen and debug menu setupLoadingScreen(viewerDiv, view); const debugMenu = new GuiTools('menuDiv', view); // ---------- DISPLAY CONTEXTUAL DATA : ---------- // Add one imagery layer to the scene // This layer is defined in a json file but it could be defined as a plain js // object. See Layer* for more info. itowns.Fetcher.json('./layers/JSONLayers/Ortho.json').then(function _(config) { config.source = new itowns.WMTSSource(config.source); var layer = new itowns.ColorLayer('Ortho', config); view.addLayer(layer).then(debugMenu.addLayerGUI.bind(debugMenu)); }); // ---------- DEFINE DATA SOURCE FROM PARSED DATA : ---------- // Handle fetching step. // Should you implement a custom fetcher, it would need to be called here. itowns.Fetcher.json( 'https://raw.githubusercontent.com/iTowns/iTowns2-sample-data/master/lyon-trains.geojson', ).then((fetched) => { // Handle parsing step. // We parse the fetched data into a FeatureCollection. // See http://www.itowns-project.org/itowns/docs/#api/Base/FeatureCollection. // Should you implement a custom parser, it would need to be called here. return itowns.GeoJsonParser.parse(fetched, { // Information on the fetched data. // See http://www.itowns-project.org/itowns/docs/#api/Source/ParsingOptions. in: { crs: 'EPSG:4326', }, // Information on the FeatureCollection that should be created from the fetched data. Here, we pass a // FeatureBuildingOptions (http://www.itowns-project.org/itowns/docs/#api/Base/FeatureBuildingOptions). out: { crs: view.tileLayer.extent.crs, }, }); }).then((parsed) => { // Finally, define a FileSource from the parsed data const sourceFromParsedData = new itowns.FileSource({ features: parsed }); view.addLayer(new itowns.ColorLayer('Trains', { source: sourceFromParsedData, style: { stroke: { color: 'black', width: 2 }, }, })).then(debugMenu.addLayerGUI.bind(debugMenu)); }); // ---------- REORDER ColorLayers AND MOVE CAMERA : ---------- view.addEventListener(itowns.GLOBE_VIEW_EVENTS.GLOBE_INITIALIZED, function () { // Organize the order with which layers are superposing. itowns.ColorLayersOrdering.moveLayerToIndex(view, 'Ortho', 0); // Move the camera to visualize all data. view.controls.lookAtCoordinate(view.getLayerById('Trains').source.extent, false); }); </script> </body> </html>