by Karolina
Cracow, 22 Jan 2019
You can
visualise and read things...
... but here you can also
capture,
store,
analyse,
question,
interpret,
manipulate
them.
!! 3D enhancement: Cesium + Angular !!
2-clause BSD License
MPL-2.0
<aol-map [width]="'100%'" [height]="'40rem'">
<aol-interaction-default></aol-interaction-default>
<aol-control-defaults></aol-control-defaults>
<aol-view [zoom]="16">
<aol-coordinate
[x]="19.948039"
[y]="50.064218"
[srid]="'EPSG:4326'"
></aol-coordinate>
</aol-view>
<aol-layer-tile>
<aol-source-osm></aol-source-osm>
</aol-layer-tile>
</aol-map>2-clause BSD License
MIT
<div leaflet style="height: 40rem;" [leafletOptions]="options"></div>options: MapOptions = {
layers: [
tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Open Street Map'
})
],
zoom: 16,
center: latLng([50.064218, 19.948039])
};limited
MIT
<mgl-map
[style]="'mapbox://styles/mapbox/streets-v9'"
[zoom]="[9]"
[center]="[-74.50, 40]"
>
<mgl-layer
id="state-borders"
type="line"
[source]="states"
[paint]="{
'line-color': '#627BC1',
'line-width': 2
}"
></mgl-layer>
</mgl-map>