1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | < html ng-app = "twente-app" > < head > < meta charset = "UTF-8" > < title >Example 1</ title > < script src = "libs/angular.js" ></ script > < script src = "libs/nine-e.min.js" ></ script > < / head > < body > < div ng-controller = "MapCtrl" > < map id = "map" boundsmodel = "boundsModel" focusmodel = "focusModel" envelopemodel = "envelopeModel" > < tileslayer tilemodel = "tileModel" ></ tileslayer > </ map > </ div > < / body > < / html > |
Examples in HTML5, with AngularJS
Example 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit.Pellentesque vel placerat eros. Sed id libero et mi ultrices eleifend. Praesent ut rhoncus ligula.Suspendisse non lorem massa, in adipiscing turpis.
1 2 3 4 5 6 7 | #map { width : 600px ; height : 322px ; overflow : hidden ; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | angular.module( 'twente-app' , [ 'nine-e' ]). factory( 'boundsScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new BoundsModel(); var timer = new Timer(50, -1); timer.scope = scope; timer.timerHandler = function () { var map = document.getElementById( "map" ); var style = map.currentStyle || getComputedStyle(map, null ); var width = style.width.replace( "px" , "" ); var height = style.height.replace( "px" , "" ); model.setBounds( new Bounds(width, height)); }; scope.timer = timer; scope.model = model; return scope; }]). factory( 'focusScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new FocusModel(); model.minScale = 1692.7500637975315; model.maxScale = 866688.0326643360; model.scaleToZoomLevels = true ; var timer = new Timer(50, 20); model.timer = timer; scope.model = model; return scope; }]). factory( 'tileScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new TileModel(); return scope; }]). run([ '$rootScope' , 'boundsScope' , 'focusScope' , 'tileScope' , function ($rootScope, boundsScope, focusScope, tileScope) { var tileModel = tileScope.model; boundsScope.$watch( 'model.bounds' , function (val) { tileModel.setBounds(val); }); focusScope.$watch( 'model.centerScale' , function (val) { tileModel.setCenterScale(val); }); boundsScope.timer.tick(); boundsScope.timer.start(); focusScope.model.setCenterScale( new CenterScale(745000, 6856000, 433344.01633216810)); }]). controller( 'MapCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , 'tileScope' , function ($scope, boundsScope, focusScope, tileScope) { $scope.boundsModel = boundsScope.model; $scope.focusModel = focusScope.model; $scope.tileModel = tileScope.model; }]). controller( 'FocusPanelCtrl' , [ '$scope' , 'focusScope' , function ($scope, focusScope) { $scope.focusModel = focusScope.model; }]); function setMapSize(width, height) { var mapStyle = document.getElementById( "map" ).style; mapStyle.width = width + "px" ; mapStyle.height = height + "px" ; } |
Example 2
Lorem ipsum dolor sit amet, consectetur adipiscing elit.Pellentesque vel placerat eros. Sed id libero et mi ultrices eleifend. Praesent ut rhoncus ligula.Suspendisse non lorem massa, in adipiscing turpis.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | < html ng-app = "twente-app" > < head > < meta charset = "UTF-8" > < title >Example 2</ title > < script src = "libs/angular.js" ></ script > < script src = "libs/nine-e.min.js" ></ script > < / head > < body > < div ng-controller = "MapCtrl" > < map id = "map" boundsmodel = "boundsModel" focusmodel = "focusModel" envelopemodel = "envelopeModel" > < tileslayer tilemodel = "tileModel" ></ tileslayer > < div id = "navigationControl" focusmodel = "focusModel" ng-controller = "FocusButtonBarCtrl" > < button ng-click = "panNorth()" >North</ button > < button ng-click = "panSouth()" >South</ button > < button ng-click = "panWest()" >West</ button > < button ng-click = "panEast()" >East</ button > < button ng-click = "zoomIn()" >Zoom In</ button > < button ng-click = "zoomOut()" >Zoom Out</ button > </ div > </ map > </ div > < / body > < / html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 | #map { width : 600px ; height : 322px ; overflow : hidden ; } #navigationControl { position : absolute ; margin : 2% 0 0 2% ; z-index : 999 ; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | angular.module( 'twente-app' , [ 'nine-e' ]). factory( 'boundsScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new BoundsModel(); var timer = new Timer(50, -1); timer.scope = scope; timer.timerHandler = function () { var map = document.getElementById( "map" ); var style = map.currentStyle || getComputedStyle(map, null ); var width = style.width.replace( "px" , "" ); var height = style.height.replace( "px" , "" ); model.setBounds( new Bounds(width, height)); }; scope.timer = timer; scope.model = model; return scope; }]). factory( 'focusScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new FocusModel(); model.minScale = 1692.7500637975315; model.maxScale = 866688.0326643360; model.scaleToZoomLevels = true ; var timer = new Timer(50, 20); model.timer = timer; scope.model = model; return scope; }]). factory( 'tileScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new TileModel(); return scope; }]). run([ '$rootScope' , 'boundsScope' , 'focusScope' , 'tileScope' , function ($rootScope, boundsScope, focusScope, tileScope) { var tileModel = tileScope.model; boundsScope.$watch( 'model.bounds' , function (val) { tileModel.setBounds(val); }); focusScope.$watch( 'model.centerScale' , function (val) { tileModel.setCenterScale(val); }); boundsScope.timer.tick(); boundsScope.timer.start(); focusScope.model.setCenterScale( new CenterScale(745000, 6856000, 433344.01633216810)); }]). controller( 'MapCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , 'tileScope' , function ($scope, boundsScope, focusScope, tileScope) { $scope.boundsModel = boundsScope.model; $scope.focusModel = focusScope.model; $scope.tileModel = tileScope.model; }]). controller( 'FocusButtonBarCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , function ($scope, boundsScope, focusScope) { var boundsModel = boundsScope.model; var focusModel = focusScope.model; $scope.panNorth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY + cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panSouth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY - cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panWest = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX - cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.panEast = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX + cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.zoomIn = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale / 2)); } $scope.zoomOut = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale * 2)); } }]). controller( 'FocusPanelCtrl' , [ '$scope' , 'focusScope' , function ($scope, focusScope) { $scope.focusModel = focusScope.model; }]); function setMapSize(width, height) { var mapStyle = document.getElementById( "map" ).style; mapStyle.width = width + "px" ; mapStyle.height = height + "px" ; } |
Example 3
Lorem ipsum dolor sit amet, consectetur adipiscing elit.Pellentesque vel placerat eros. Sed id libero et mi ultrices eleifend. Praesent ut rhoncus ligula.Suspendisse non lorem massa, in adipiscing turpis.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | < html ng-app = "twente-app" > < head > < meta charset = "UTF-8" > < title >Example 3</ title > < script src = "libs/angular.js" ></ script > < script src = "libs/nine-e.min.js" ></ script > < / head > < body > < div class = "twente_map_container" ng-controller = "MapCtrl" > < legend id = "legend" layers = "layers" ></ legend > < map id = "map" boundsmodel = "boundsModel" focusmodel = "focusModel" envelopemodel = "envelopeModel" > < tileslayer tilemodel = "tileModel" ></ tileslayer > < div id = "navigationControl" focusmodel = "focusModel" ng-controller = "FocusButtonBarCtrl" > < button ng-click = "panNorth()" >North</ button > < button ng-click = "panSouth()" >South</ button > < button ng-click = "panWest()" >West</ button > < button ng-click = "panEast()" >East</ button > < button ng-click = "zoomIn()" >Zoom In</ button > < button ng-click = "zoomOut()" >Zoom Out</ button > </ div > < mapfeaturelayer layer = "layers[0]" featuremodel = "featureModels[1]" selectionmodel = "selectionModel" featurecommands = "selectCommands" > < geometrysymbolizer maxscale = "108336.00408304202" style = "fill:none;stroke:#FF0000;stroke-width:5" propertyindex = "3" ></ geometrysymbolizer > < geometrysymbolizer maxscale = "108336.00408304202" propertyindex = "4" style = "fill:none;stroke:#0000FF;stroke-width:5" ></ geometrysymbolizer > < imagesymbolizer propertyindex = "2" assetpropertyindex = "0" asset = "twentemobiel/images/symt$_18.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[1]" featuremodel = "featureModels[2]" featurecommands = "selectCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/trains.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[2]" featuremodel = "featureModels[3]" featurecommands = "selectCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "2" assetpropertyindex = "" asset = "twentemobiel/images/bikes.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[3]" featuremodel = "featureModels[4]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/parkrides.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[4]" featuremodel = "featureModels[5]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/carpools.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[5]" featuremodel = "featureModels[6]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/carparks.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[6]" featuremodel = "featureModels[7]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < geometryimagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/webcams.png" ></ geometryimagesymbolizer > </ mapfeaturelayer > </ map > </ div > < / body > < / html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | .twente_map_container { color : #757575 ; font : 12px Arial ; max-width : 1200px ; margin : 0 auto ; } #legend { float : left ; width : 14% ; } #legend ul { list-style-type : none ; margin-left : -3em ; } #map { width : 68% ; min-width : 310px ; height : 600px ; float : left ; overflow : hidden ; } #navigationControl { position : absolute ; margin : 2% 0 0 2% ; z-index : 999 ; } .highlightSymbolizer { opacity: 0.4 ; width : 26px ; margin : -4px 0 0 -4px ; } .defaultSymbolizer { opacity: 1.0 ; width : 18px ; margin : 0 ; } .highlightGeometrySymbolizer { fill: none ; stroke- width : 7 ; } .defaultGeometrySymbolizer { fill: none ; stroke- width : 5 ; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | angular.module( 'twente-app' , [ 'nine-e' , 'ngSanitize' ]). factory( 'boundsScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new BoundsModel(); var timer = new Timer(50, -1); timer.scope = scope; timer.timerHandler = function () { var map = document.getElementById( "map" ); var style = map.currentStyle || getComputedStyle(map, null ); var width = style.width.replace( "px" , "" ); var height = style.height.replace( "px" , "" ); model.setBounds( new Bounds(width, height)); }; scope.timer = timer; scope.model = model; return scope; }]). factory( 'focusScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new FocusModel(); model.minScale = 1692.7500637975315; model.maxScale = 866688.0326643360; model.scaleToZoomLevels = true ; var timer = new Timer(50, 20); model.timer = timer; scope.model = model; return scope; }]). factory( 'envelopeScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new EnvelopeCenterScale(); scope.model = model; return scope; }]). factory( 'layerScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var layers = [ {id:1, title: 'Hinder en afsluitingen' , visible: false }, {id:2, title: 'Treinstations' , visible: false }, {id:3, title: 'OV-fietslocaties' , visible: false }, {id:4, title: 'P&R-plaatsen' , visible: false }, {id:5, title: 'Carpoolplaatsen' , visible: false }, {id:6, title: 'Parkeren in het centrum' , visible: false }, {id:7, title: 'Webcams' , visible: false } ]; scope.layers = layers; return scope; }]). factory( 'featureScope' , [ '$rootScope' , '$http' , function ($rootScope, $http) { var scope = $rootScope.$ new (); var services = [ {id:1, url: 'twentemobiel/objects.csv' , fieldSeparator: '|' , simple: true , featureName: 'hinderFeatureModel' , featureType: new FeatureType( 'hinderFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.GEOMETRY), new Property( 'd' , PropertyType.prototype.GEOMETRY), new Property( 'e' , PropertyType.prototype.GEOMETRY), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING), new Property( 'h' , PropertyType.prototype.STRING), new Property( 'j' , PropertyType.prototype.STRING), new Property( 'k' , PropertyType.prototype.STRING), new Property( 'l' , PropertyType.prototype.STRING)))}, {id:2, url: 'twentemobiel/trains.csv' , fieldSeparator: ';' , simple: false , featureName: 'trainFeatureModel' , featureType: new FeatureType( 'trainFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING)))}, {id:3, url: 'twentemobiel/bikes.csv' , fieldSeparator: ';' , simple: false , featureName: 'bikesFeatureModel' , featureType: new FeatureType( 'bikesFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.GEOMETRY), new Property( 'd' , PropertyType.prototype.STRING), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING), new Property( 'h' , PropertyType.prototype.STRING), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'k' , PropertyType.prototype.STRING), new Property( 'l' , PropertyType.prototype.STRING)))}, {id:4, url: 'twentemobiel/parkrides.csv' , fieldSeparator: ';' , simple: false , featureName: 'parkridesFeatureModel' , featureType: new FeatureType( 'parkridesFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:5, url: 'twentemobiel/carpools.csv' , fieldSeparator: ';' , simple: false , featureName: 'carpoolsFeatureModel' , featureType: new FeatureType( 'carpoolsFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:6, url: 'twentemobiel/carparks.csv' , fieldSeparator: ';' , simple: false , featureName: 'carparksFeatureModel' , featureType: new FeatureType( 'carparksFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:7, url: 'twentemobiel/webcams.csv' , fieldSeparator: ';' , simple: false , featureName: 'webcamsFeatureModel' , featureType: new FeatureType( 'webcamsFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))} ]; scope.models = new Array(services.length); for ( var i = 0; i < services.length; ++i) { var serviceConnector = new CSVServiceConnector($http, services[i].id, services[i].fieldSeparator, services[i].simple, services[i].featureType, services[i].url); serviceConnector.load(scope, function (scope, id, featureModel) { scope.models[id] = featureModel; }); } return scope; }]). factory( 'selectionScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new SelectionModel(); scope.model.selectedFeatures = [ null , null ]; // [0] is the mouseover feature, [1] is the selected feature. Each one causes a highlight in the map, but only [1] actives the info panel. return scope; }]). factory( 'tileScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new TileModel(); return scope; }]). run([ '$rootScope' , 'boundsScope' , 'focusScope' , 'envelopeScope' , 'tileScope' , function ($rootScope, boundsScope, focusScope, envelopeScope, tileScope) { var tileModel = tileScope.model; boundsScope.$watch( 'model.bounds' , function (val) { envelopeScope.model.setBounds(val); tileModel.setBounds(val); }); focusScope.$watch( 'model.centerScale' , function (val) { envelopeScope.model.setCenterScale(val); tileModel.setCenterScale(val); }); boundsScope.timer.tick(); boundsScope.timer.start(); focusScope.model.setCenterScale( new CenterScale(745000, 6856000, 433344.01633216810)); }]). controller( 'MapCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , 'envelopeScope' , 'selectionScope' , 'tileScope' , 'layerScope' , 'featureScope' , function ($scope, boundsScope, focusScope, envelopeScope, selectionScope, tileScope, layerScope, featureScope) { $scope.boundsModel = boundsScope.model; $scope.focusModel = focusScope.model; $scope.envelopeModel = envelopeScope.model; $scope.selectionModel = selectionScope.model; $scope.tileModel = tileScope.model; $scope.layers = layerScope.layers; $scope.featureModels = featureScope.models; $scope.toggleSelect0FeatureCommand = new ToggleSelectFeatureCommand($scope.selectionModel, 0); $scope.toggleSelect1FeatureCommand = new ToggleSelectFeatureCommand($scope.selectionModel, 1); $scope.toURLFeatureCommand = new ToURLFeatureCommand(); $scope.selectCommands = [$scope.toggleSelect0FeatureCommand, $scope.toggleSelect0FeatureCommand, $scope.toggleSelect1FeatureCommand]; $scope.urlCommands = [$scope.toggleSelect0FeatureCommand, $scope.toggleSelect0FeatureCommand, $scope.toURLFeatureCommand]; }]). controller( 'FocusButtonBarCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , function ($scope, boundsScope, focusScope) { var boundsModel = boundsScope.model; var focusModel = focusScope.model; $scope.panNorth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY + cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panSouth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY - cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panWest = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX - cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.panEast = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX + cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.zoomIn = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale / 2)); } $scope.zoomOut = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale * 2)); } }]). controller( 'FocusPanelCtrl' , [ '$scope' , 'focusScope' , function ($scope, focusScope) { $scope.focusModel = focusScope.model; }]); function setMapSize(width, height) { var mapStyle = document.getElementById( "map" ).style; mapStyle.width = width + "px" ; mapStyle.height = height + "px" ; } |
Example 4
Lorem ipsum dolor sit amet, consectetur adipiscing elit.Pellentesque vel placerat eros. Sed id libero et mi ultrices eleifend. Praesent ut rhoncus ligula.Suspendisse non lorem massa, in adipiscing turpis.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | < html ng-app = "twente-app" > < head > < meta charset = "UTF-8" > < title >Example 4</ title > < script src = "libs/angular.js" ></ script > < script src = "libs/nine-e.min.js" ></ script > < / head > < body > < div class = "twente_map_container" ng-controller = "MapCtrl" > < legend id = "legend" layers = "layers" ></ legend > < map id = "map" boundsmodel = "boundsModel" focusmodel = "focusModel" envelopemodel = "envelopeModel" > < tileslayer tilemodel = "tileModel" ></ tileslayer > < div id = "navigationControl" focusmodel = "focusModel" ng-controller = "FocusButtonBarCtrl" > < button ng-click = "panNorth()" >North</ button > < button ng-click = "panSouth()" >South</ button > < button ng-click = "panWest()" >West</ button > < button ng-click = "panEast()" >East</ button > < button ng-click = "zoomIn()" >Zoom In</ button > < button ng-click = "zoomOut()" >Zoom Out</ button > </ div > < mapfeaturelayer layer = "layers[0]" featuremodel = "featureModels[1]" selectionmodel = "selectionModel" featurecommands = "selectCommands" > < geometrysymbolizer maxscale = "108336.00408304202" style = "fill:none;stroke:#FF0000;stroke-width:5" propertyindex = "3" ></ geometrysymbolizer > < geometrysymbolizer maxscale = "108336.00408304202" propertyindex = "4" style = "fill:none;stroke:#0000FF;stroke-width:5" ></ geometrysymbolizer > < imagesymbolizer propertyindex = "2" assetpropertyindex = "0" asset = "twentemobiel/images/symt$_18.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[1]" featuremodel = "featureModels[2]" featurecommands = "selectCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/trains.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[2]" featuremodel = "featureModels[3]" featurecommands = "selectCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "2" assetpropertyindex = "" asset = "twentemobiel/images/bikes.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[3]" featuremodel = "featureModels[4]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/parkrides.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[4]" featuremodel = "featureModels[5]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/carpools.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[5]" featuremodel = "featureModels[6]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < imagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/carparks.png" ></ imagesymbolizer > </ mapfeaturelayer > < mapfeaturelayer layer = "layers[6]" featuremodel = "featureModels[7]" featurecommands = "urlCommands" selectionmodel = "selectionModel" > < geometryimagesymbolizer propertyindex = "3" assetpropertyindex = "" asset = "twentemobiel/images/webcams.png" ></ geometryimagesymbolizer > </ mapfeaturelayer > </ map > < div id = "infoPanel" ng-controller = "InfoCtrl" > < div ng-if = "selectionModel.selectedFeatures[1] == null" >Er zijn op dit moment {{featureModels[1].features.length}} meldingen van hinder en afsluitingen. Wegwerkzaamheden en evenementen die over meer dan 4 weken aanvangen zijn nog niet zichtbaar.</ div > < div ng-if = "selectionModel.selectedFeatures[1].featureType.name == 'hinderFeatureModel'" ng-bind-html = "setWegobjectText(selectionModel.selectedFeatures[1].propertyValues)" > </ div > < div ng-if = "selectionModel.selectedFeatures[1].featureType.name == 'trainFeatureModel'" ng-bind-html = "setTrainText(selectionModel.selectedFeatures[1].propertyValues)" > </ div > < div ng-if = "selectionModel.selectedFeatures[1].featureType.name == 'bikesFeatureModel'" ng-bind-html = "setBikeText(selectionModel.selectedFeatures[1].propertyValues)" > </ div > </ div > </ div > < / body > < / html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | .twente_map_container { color : #757575 ; font : 12px Arial ; max-width : 1200px ; margin : 0 auto ; } #legend { float : left ; width : 14% ; } #legend ul { list-style-type : none ; margin-left : -3em ; } #infoPanel { width : 16% ; padding : 1% ; float : left ; } #infoPanel .heading { color : #222222 ; font-weight : bold ; } #map { width : 68% ; min-width : 310px ; height : 600px ; float : left ; overflow : hidden ; } #navigationControl { position : absolute ; margin : 2% 0 0 2% ; z-index : 999 ; } .highlightSymbolizer { opacity: 0.4 ; width : 26px ; margin : -4px 0 0 -4px ; } .defaultSymbolizer { opacity: 1.0 ; width : 18px ; margin : 0 ; } .highlightGeometrySymbolizer { fill: none ; stroke- width : 7 ; } .defaultGeometrySymbolizer { fill: none ; stroke- width : 5 ; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | angular.module( 'twente-app' , [ 'nine-e' , 'ngSanitize' ]). factory( 'boundsScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new BoundsModel(); var timer = new Timer(50, -1); timer.scope = scope; timer.timerHandler = function () { var map = document.getElementById( "map" ); var style = map.currentStyle || getComputedStyle(map, null ); var width = style.width.replace( "px" , "" ); var height = style.height.replace( "px" , "" ); model.setBounds( new Bounds(width, height)); }; scope.timer = timer; scope.model = model; return scope; }]). factory( 'focusScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new FocusModel(); model.minScale = 1692.7500637975315; model.maxScale = 866688.0326643360; model.scaleToZoomLevels = true ; var timer = new Timer(50, 20); model.timer = timer; scope.model = model; return scope; }]). factory( 'envelopeScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var model = new EnvelopeCenterScale(); scope.model = model; return scope; }]). factory( 'layerScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); var layers = [ {id:1, title: 'Hinder en afsluitingen' , visible: false }, {id:2, title: 'Treinstations' , visible: false }, {id:3, title: 'OV-fietslocaties' , visible: false }, {id:4, title: 'P&R-plaatsen' , visible: false }, {id:5, title: 'Carpoolplaatsen' , visible: false }, {id:6, title: 'Parkeren in het centrum' , visible: false }, {id:7, title: 'Webcams' , visible: false } ]; scope.layers = layers; return scope; }]). factory( 'featureScope' , [ '$rootScope' , '$http' , function ($rootScope, $http) { var scope = $rootScope.$ new (); var services = [ {id:1, url: 'twentemobiel/objects.csv' , fieldSeparator: '|' , simple: true , featureName: 'hinderFeatureModel' , featureType: new FeatureType( 'hinderFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.GEOMETRY), new Property( 'd' , PropertyType.prototype.GEOMETRY), new Property( 'e' , PropertyType.prototype.GEOMETRY), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING), new Property( 'h' , PropertyType.prototype.STRING), new Property( 'j' , PropertyType.prototype.STRING), new Property( 'k' , PropertyType.prototype.STRING), new Property( 'l' , PropertyType.prototype.STRING)))}, {id:2, url: 'twentemobiel/trains.csv' , fieldSeparator: ';' , simple: false , featureName: 'trainFeatureModel' , featureType: new FeatureType( 'trainFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING)))}, {id:3, url: 'twentemobiel/bikes.csv' , fieldSeparator: ';' , simple: false , featureName: 'bikesFeatureModel' , featureType: new FeatureType( 'bikesFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.GEOMETRY), new Property( 'd' , PropertyType.prototype.STRING), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'f' , PropertyType.prototype.STRING), new Property( 'g' , PropertyType.prototype.STRING), new Property( 'h' , PropertyType.prototype.STRING), new Property( 'e' , PropertyType.prototype.STRING), new Property( 'k' , PropertyType.prototype.STRING), new Property( 'l' , PropertyType.prototype.STRING)))}, {id:4, url: 'twentemobiel/parkrides.csv' , fieldSeparator: ';' , simple: false , featureName: 'parkridesFeatureModel' , featureType: new FeatureType( 'parkridesFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:5, url: 'twentemobiel/carpools.csv' , fieldSeparator: ';' , simple: false , featureName: 'carpoolsFeatureModel' , featureType: new FeatureType( 'carpoolsFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:6, url: 'twentemobiel/carparks.csv' , fieldSeparator: ';' , simple: false , featureName: 'carparksFeatureModel' , featureType: new FeatureType( 'carparksFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))}, {id:7, url: 'twentemobiel/webcams.csv' , fieldSeparator: ';' , simple: false , featureName: 'webcamsFeatureModel' , featureType: new FeatureType( 'webcamsFeatureModel' , new Array( new Property( 'a' , PropertyType.prototype.STRING), new Property( 'b' , PropertyType.prototype.STRING), new Property( 'c' , PropertyType.prototype.STRING), new Property( 'd' , PropertyType.prototype.GEOMETRY)))} ]; scope.models = new Array(services.length); for ( var i = 0; i < services.length; ++i) { var serviceConnector = new CSVServiceConnector($http, services[i].id, services[i].fieldSeparator, services[i].simple, services[i].featureType, services[i].url); serviceConnector.load(scope, function (scope, id, featureModel) { scope.models[id] = featureModel; }); } return scope; }]). factory( 'selectionScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new SelectionModel(); scope.model.selectedFeatures = [ null , null ]; // [0] is the mouseover feature, [1] is the selected feature. Each one causes a highlight in the map, but only [1] actives the info panel. return scope; }]). factory( 'tileScope' , [ '$rootScope' , function ($rootScope) { var scope = $rootScope.$ new (); scope.model = new TileModel(); return scope; }]). run([ '$rootScope' , 'boundsScope' , 'focusScope' , 'envelopeScope' , 'tileScope' , function ($rootScope, boundsScope, focusScope, envelopeScope, tileScope) { var tileModel = tileScope.model; boundsScope.$watch( 'model.bounds' , function (val) { envelopeScope.model.setBounds(val); tileModel.setBounds(val); }); focusScope.$watch( 'model.centerScale' , function (val) { envelopeScope.model.setCenterScale(val); tileModel.setCenterScale(val); }); boundsScope.timer.tick(); boundsScope.timer.start(); focusScope.model.setCenterScale( new CenterScale(745000, 6856000, 433344.01633216810)); }]). controller( 'MapCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , 'envelopeScope' , 'selectionScope' , 'tileScope' , 'layerScope' , 'featureScope' , function ($scope, boundsScope, focusScope, envelopeScope, selectionScope, tileScope, layerScope, featureScope) { $scope.boundsModel = boundsScope.model; $scope.focusModel = focusScope.model; $scope.envelopeModel = envelopeScope.model; $scope.selectionModel = selectionScope.model; $scope.tileModel = tileScope.model; $scope.layers = layerScope.layers; $scope.featureModels = featureScope.models; $scope.toggleSelect0FeatureCommand = new ToggleSelectFeatureCommand($scope.selectionModel, 0); $scope.toggleSelect1FeatureCommand = new ToggleSelectFeatureCommand($scope.selectionModel, 1); $scope.toURLFeatureCommand = new ToURLFeatureCommand(); $scope.selectCommands = [$scope.toggleSelect0FeatureCommand, $scope.toggleSelect0FeatureCommand, $scope.toggleSelect1FeatureCommand]; $scope.urlCommands = [$scope.toggleSelect0FeatureCommand, $scope.toggleSelect0FeatureCommand, $scope.toURLFeatureCommand]; }]). controller( 'FocusButtonBarCtrl' , [ '$scope' , 'boundsScope' , 'focusScope' , function ($scope, boundsScope, focusScope) { var boundsModel = boundsScope.model; var focusModel = focusScope.model; $scope.panNorth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY + cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panSouth = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY - cs.getNumWorldCoords(bounds.height / 2), cs.scale)); } $scope.panWest = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX - cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.panEast = function () { var bounds = boundsModel.bounds; var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX + cs.getNumWorldCoords(bounds.width / 2), cs.centerY, cs.scale)); } $scope.zoomIn = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale / 2)); } $scope.zoomOut = function () { var cs = focusModel.centerScale; focusModel.setAnimationCenterScale( new CenterScale(cs.centerX, cs.centerY, cs.scale * 2)); } }]). controller( 'FocusPanelCtrl' , [ '$scope' , 'focusScope' , function ($scope, focusScope) { $scope.focusModel = focusScope.model; }]). controller( 'InfoCtrl' , [ '$scope' , 'layerScope' , 'featureScope' , 'selectionScope' , function ($scope, layerScope, featureScope, selectionScope) { $scope.layers = layerScope.layers; $scope.featureModels = featureScope.models; $scope.selectionModel = selectionScope.model; $scope.setWegobjectText = function (propertyValues) { var typeText = "" ; switch (propertyValues[0]) { case '1' : typeText = "Hinder door wegwerkzaamheden" ; break ; case '2' : typeText = "Afsluiting vanwege wegwerkzaamheden" ; break ; case '3' : typeText = "Hinder door evenement" ; break ; case '4' : typeText = "Afsluiting vanwege evenement" ; break ; case '5' : typeText = "Hinder door calamiteit" ; break ; case '6' : typeText = "Afsluiting vanwege calamiteit" ; break ; default : return ; } var text = "" ; text += "<p class=" heading ">" + typeText + "</p>" ; text += "<p class=" heading ">" + propertyValues[7] + "</p>" ; text += "<p>" + propertyValues[6] + "</p>" ; text += "<p>Waar</p>" ; text += "<p>" + propertyValues[9] + "</p>" ; text += "<p>Wanneer</p>" ; text += "<p>" + propertyValues[1] + "</p>" ; text += "<p>Meer informatie</p>" ; if (propertyValues[8] != null ) { text += "<p>" + propertyValues[8] + "</p>" ; } text += "<p><a href=" http: //www.twentebereikbaar.nl/pdf/maakpdf.php?Objectnummer=" + propertyValues[5] + "®io=1">Download als pdf</a></p>"; text = text.replace(/ null /g, "" ); text = text.replace(/\[link\](.*?)\n*?\[text\](.*?)\[end\]/g, "<a href=" $1 ">$2</a>" ); text = text.replace(/\[7C\]/g, "|" ); text = text.replace(/\[0A\]/g, "<br>" ); return text; } $scope.setTrainText = function (propertyValues) { var text = "" ; text += "<p class=" heading ">Treinstation</p>" ; text += "<p class=" heading ">" + propertyValues[1] + "</p>" ; text += "<p><a href=" " + propertyValues[2] + " ">Voorzieningen op het station</a></p>" ; text += "<p><a href=" " + propertyValues[4] + " ">Plan een reis vanaf dit station</a></p>" ; text += "<p><a href=" " + propertyValues[5] + " ">Plan een reis naar dit station</a></p>" ; text += "<p><a href=" " + propertyValues[6] + " ">Actuele vertrektijden</a></p>" ; return text; } $scope.setBikeText = function (propertyValues) { var text = "" ; text += "<p class=" heading ">OV-fietslocatie</p>" ; text += "<p class=" heading ">" + propertyValues[3] + "</p>" ; if (propertyValues[4] != null ) { text += "<p>" + propertyValues[4] + "</p>" ; } if (propertyValues[5] != null ) { text += "<p>" + propertyValues[5] + "</p>" ; } if (propertyValues[6] != null ) { text += "<p>" + propertyValues[6] + " " + propertyValues[7] + "</p>" ; } text += "<p>Openingstijden</p>" ; text += "<p>" + propertyValues[8] + "</p>" ; if (propertyValues[9] != null ) { text += "<p>Bijzonderheden</p>" ; text += "<p>" + propertyValues[9] + "</p>" ; } text += "<p><a href=" " + propertyValues[10] + " ">Plan een fietsroute vanaf hier</a></p>" ; text += "<p><a href=" " + propertyValues[1] + " ">Meer informatie</a></p>" ; return text; } }]); function setMapSize(width, height) { var mapStyle = document.getElementById( "map" ).style; mapStyle.width = width + "px" ; mapStyle.height = height + "px" ; } |