WebWorldWind/examples/GeoJSON.js
GabrielePrestifilippo fdeee2dcdc GeoJson Callback
Implementation of callback for GeoJSON with a sample
2016-05-18 23:09:32 +02:00

180 lines
8.5 KiB
JavaScript

/*
* Copyright (C) 2014 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration. All Rights Reserved.
*/
requirejs(['../src/WorldWind',
'./LayerManager'],
function (ww,
LayerManager) {
"use strict";
WorldWind.Logger.setLoggingLevel(WorldWind.Logger.LEVEL_WARNING);
var wwd = new WorldWind.WorldWindow("canvasOne");
var layers = [
{layer: new WorldWind.BMNGLayer(), enabled: true},
{layer: new WorldWind.CompassLayer(), enabled: true},
{layer: new WorldWind.CoordinatesDisplayLayer(wwd), enabled: true},
{layer: new WorldWind.ViewControlsLayer(wwd), enabled: true}
];
for (var l = 0; l < layers.length; l++) {
layers[l].layer.enabled = layers[l].enabled;
wwd.addLayer(layers[l].layer);
}
// Set up the common placemark attributes.
var placemarkAttributes = new WorldWind.PlacemarkAttributes(null);
placemarkAttributes.imageScale = 0.05;
placemarkAttributes.imageColor = WorldWind.Color.WHITE;
placemarkAttributes.labelAttributes.offset = new WorldWind.Offset(
WorldWind.OFFSET_FRACTION, 0.5,
WorldWind.OFFSET_FRACTION, 1.5);
placemarkAttributes.imageSource = WorldWind.configuration.baseUrl + "images/white-dot.png";
var shapeConfigurationCallback = function (geometry, properties) {
var configuration = {};
if (geometry.isPointType() || geometry.isMultiPointType()) {
configuration.attributes = new WorldWind.PlacemarkAttributes(placemarkAttributes);
if (properties && (properties.name || properties.Name || properties.NAME)) {
configuration.name = properties.name || properties.Name || properties.NAME;
}
if (properties && properties.POP_MAX) {
var population = properties.POP_MAX;
configuration.attributes.imageScale = 0.01 * Math.log(population);
}
}
else if (geometry.isLineStringType() || geometry.isMultiLineStringType()){
configuration.attributes = new WorldWind.ShapeAttributes(null);
configuration.attributes.drawOutline = true;
configuration.attributes.outlineColor = new WorldWind.Color(
0.1 * configuration.attributes.interiorColor.red,
0.3 * configuration.attributes.interiorColor.green,
0.7 * configuration.attributes.interiorColor.blue,
1.0);
configuration.attributes.outlineWidth = 1.0;
}
else if(geometry.isPolygonType() || geometry.isMultiPolygonType())
{
configuration.attributes = new WorldWind.ShapeAttributes(null);
// Fill the polygon with a random pastel color.
configuration.attributes.interiorColor = new WorldWind.Color(
0.375 + 0.5 * Math.random(),
0.375 + 0.5 * Math.random(),
0.375 + 0.5 * Math.random(),
0.1);
// Paint the outline in a darker variant of the interior color.
configuration.attributes.outlineColor = new WorldWind.Color(
0.5 * configuration.attributes.interiorColor.red,
0.5 * configuration.attributes.interiorColor.green,
0.5 * configuration.attributes.interiorColor.blue,
1.0);
}
return configuration;
};
var callbackFunction = function(layer) {
wwd.addLayer(layer);
};
var resourcesUrl = "http://worldwindserver.net/webworldwind/data/geojson-data/";
// Polygon test
var polygonLayer = new WorldWind.RenderableLayer("Polygon");
var polygonGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "PolygonTest.geojson");
polygonGeoJSON.load(shapeConfigurationCallback, polygonLayer);
wwd.addLayer(polygonLayer);
// MultiPolygon test
var multiPolygonLayer = new WorldWind.RenderableLayer("MultiPolygon");
var multiPolygonGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "MultiPolygonTest.geojson");
multiPolygonGeoJSON.load(shapeConfigurationCallback, multiPolygonLayer);
wwd.addLayer(multiPolygonLayer);
//Point test
var pointLayer = new WorldWind.RenderableLayer("Point");
var pointGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "PointTest.geojson");
pointGeoJSON.load(shapeConfigurationCallback, pointLayer);
wwd.addLayer(pointLayer);
//MultiPoint test
var multiPointLayer = new WorldWind.RenderableLayer("MultiPoint");
var multiPointGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "MultiPointTest.geojson");
multiPointGeoJSON.load(shapeConfigurationCallback, multiPointLayer);
wwd.addLayer(multiPointLayer);
//LineString test
var lineStringLayer = new WorldWind.RenderableLayer("LineString");
var lineStringDataSource = '{ "type": "LineString", "coordinates": [[28.609974323244046, 44.202662372914631] , [ 26.098000795350401, 44.435317663494573]] }';
var lineStringGeoJSON = new WorldWind.GeoJSONParser(lineStringDataSource);
lineStringGeoJSON.load(shapeConfigurationCallback, lineStringLayer);
wwd.addLayer(lineStringLayer);
//MultiLineString test
var multiLineStringLayer = new WorldWind.RenderableLayer("MultiLineString");
var multiLineStringGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "MultiLineStringTest.geojson");
multiLineStringGeoJSON.load(shapeConfigurationCallback, multiLineStringLayer);
wwd.addLayer(multiLineStringLayer);
// GeometryCollection test with a callback function
var geometryCollectionLayer = new WorldWind.RenderableLayer("GeometryCollection");
var geometryCollectionGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "GeometryCollectionFeatureTest.geojson");
geometryCollectionGeoJSON.load(shapeConfigurationCallback, geometryCollectionLayer, callbackFunction);
// Feature test
var featureLayer = new WorldWind.RenderableLayer("Feature - USA");
var featureGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "FeatureTest.geojson");
featureGeoJSON.load(shapeConfigurationCallback, featureLayer);
wwd.addLayer(featureLayer);
// Feature collection tests
//World Borders
var worldBordersLayer = new WorldWind.RenderableLayer("World Borders");
var worldBordersGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "world_borders.geojson");
worldBordersGeoJSON.load(shapeConfigurationCallback, worldBordersLayer);
wwd.addLayer(worldBordersLayer);
//World Main Cities
var worldMainCitiesLayer = new WorldWind.RenderableLayer("World Main Cities");
var worldMainCitiesGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "world_main_cities.geojson");
worldMainCitiesGeoJSON.load(shapeConfigurationCallback, worldMainCitiesLayer);
wwd.addLayer(worldMainCitiesLayer);
//World Rivers
var worldRiversLayer = new WorldWind.RenderableLayer("World Rivers");
var worldRiversGeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "world_rivers.geojson");
worldRiversGeoJSON.load(shapeConfigurationCallback, worldRiversLayer);
wwd.addLayer(worldRiversLayer);
//CRS Reprojection test
//USA EPSG:3857 named
var usa3857Layer = new WorldWind.RenderableLayer("USA 3857-named");
var usa3857GeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "usa_epsg3857_named.geojson");
usa3857GeoJSON.load(shapeConfigurationCallback, usa3857Layer);
wwd.addLayer(usa3857Layer);
//USA EPSG:3857 linked
var usa3857Layer = new WorldWind.RenderableLayer("USA 3857-linked");
var usa3857GeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "usa_epsg3857_linked.geojson");
usa3857GeoJSON.load(shapeConfigurationCallback, usa3857Layer);
wwd.addLayer(usa3857Layer);
//USA EPSG:4326
var usa4326Layer = new WorldWind.RenderableLayer("USA-4326");
var usa4326GeoJSON = new WorldWind.GeoJSONParser(resourcesUrl + "usa_epsg4326.geojson");
usa4326GeoJSON.load(shapeConfigurationCallback, usa4326Layer);
wwd.addLayer(usa4326Layer);
// Create a layer manager for controlling layer visibility.
var layerManger = new LayerManager(wwd);
});