ol-source-webglpoints
A vector source for rendering points with WebGL
Please note, that you can't use ol-style
and related style components here as child components. You have to apply styles directly via the style
prop on the ol-webgl-points-layer
component.
Usage
with url
prop
<template>
<ol-map
:loadTilesWhileAnimating="true"
:loadTilesWhileInteracting="true"
style="height: 400px"
>
<ol-view
ref="view"
:center="center"
:rotation="rotation"
:zoom="zoom"
:projection="projection"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-webgl-points-layer :styles="webglPointsStyle">
<ol-source-webglpoints
:format="geoJson"
url="https://openlayers.org/en/latest/examples/data/geojson/world-cities.geojson"
/>
</ol-webgl-points-layer>
</ol-map>
</template>
<script setup>
import { ref, inject } from "vue";
const center = ref([40, 40]);
const projection = ref("EPSG:4326");
const zoom = ref(3);
const rotation = ref(0);
const format = inject("ol-format");
const geoJson = new format.GeoJSON();
const webglPointsStyle = {
"circle-radius": 6,
"circle-fill-color": "yellow",
"circle-stroke-width": 2,
"circle-stroke-color": "darkblue",
"circle-opacity": [
"interpolate",
["linear"],
["get", "population"],
40000,
0.6,
2000000,
0.92,
],
};
</script>
<template>
<ol-map
:loadTilesWhileAnimating="true"
:loadTilesWhileInteracting="true"
style="height: 400px"
>
<ol-view
ref="view"
:center="center"
:rotation="rotation"
:zoom="zoom"
:projection="projection"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-webgl-points-layer :styles="webglPointsStyle">
<ol-source-webglpoints
:format="geoJson"
url="https://openlayers.org/en/latest/examples/data/geojson/world-cities.geojson"
/>
</ol-webgl-points-layer>
</ol-map>
</template>
<script setup>
import { ref, inject } from "vue";
const center = ref([40, 40]);
const projection = ref("EPSG:4326");
const zoom = ref(3);
const rotation = ref(0);
const format = inject("ol-format");
const geoJson = new format.GeoJSON();
const webglPointsStyle = {
"circle-radius": 6,
"circle-fill-color": "yellow",
"circle-stroke-width": 2,
"circle-stroke-color": "darkblue",
"circle-opacity": [
"interpolate",
["linear"],
["get", "population"],
40000,
0.6,
2000000,
0.92,
],
};
</script>
ol-feature
child component
<template>
<ol-map
:loadTilesWhileAnimating="true"
:loadTilesWhileInteracting="true"
style="height: 400px"
>
<ol-view
ref="view"
:center="center"
:rotation="rotation"
:zoom="zoom"
:projection="projection"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-webgl-points-layer :styles="webglPointsStyle">
<ol-source-webglpoints :format="geoJson">
<ol-feature v-for="index in 20" :key="index">
<ol-geom-point
:coordinates="[
getRandomInRange(24, 45, 3),
getRandomInRange(35, 41, 3),
]"
></ol-geom-point>
</ol-feature>
</ol-source-webglpoints>
</ol-webgl-points-layer>
</ol-map>
</template>
<script setup>
import { ref, inject } from "vue";
const center = ref([40, 40]);
const projection = ref("EPSG:4326");
const zoom = ref(5);
const rotation = ref(0);
const format = inject("ol-format");
const geoJson = new format.GeoJSON();
const getRandomInRange = (from, to, fixed) => {
return (Math.random() * (to - from) + from).toFixed(fixed) * 1;
};
const webglPointsStyle = {
"circle-radius": 6,
"circle-fill-color": "yellow",
"circle-stroke-width": 2,
"circle-stroke-color": "darkblue",
"circle-opacity": [
"interpolate",
["linear"],
["get", "population"],
40000,
0.6,
2000000,
0.92,
],
};
</script>
<template>
<ol-map
:loadTilesWhileAnimating="true"
:loadTilesWhileInteracting="true"
style="height: 400px"
>
<ol-view
ref="view"
:center="center"
:rotation="rotation"
:zoom="zoom"
:projection="projection"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-webgl-points-layer :styles="webglPointsStyle">
<ol-source-webglpoints :format="geoJson">
<ol-feature v-for="index in 20" :key="index">
<ol-geom-point
:coordinates="[
getRandomInRange(24, 45, 3),
getRandomInRange(35, 41, 3),
]"
></ol-geom-point>
</ol-feature>
</ol-source-webglpoints>
</ol-webgl-points-layer>
</ol-map>
</template>
<script setup>
import { ref, inject } from "vue";
const center = ref([40, 40]);
const projection = ref("EPSG:4326");
const zoom = ref(5);
const rotation = ref(0);
const format = inject("ol-format");
const geoJson = new format.GeoJSON();
const getRandomInRange = (from, to, fixed) => {
return (Math.random() * (to - from) + from).toFixed(fixed) * 1;
};
const webglPointsStyle = {
"circle-radius": 6,
"circle-fill-color": "yellow",
"circle-stroke-width": 2,
"circle-stroke-color": "darkblue",
"circle-opacity": [
"interpolate",
["linear"],
["get", "population"],
40000,
0.6,
2000000,
0.92,
],
};
</script>
Properties
Props from OpenLayers
Properties are passed-trough from OpenLayers directly. Their types and default values can be checked-out in the official OpenLayers docs. Only some properties deviate caused by reserved keywords from Vue / HTML. This deviating props are described in the section below.
Deviating Properties
None.
Events
You have access to all Events from the underlying source. Check out the official OpenLayers docs to see the available events tht will be fired.
<ol-source-webglpoints :url="url" @error="handleEvent" />
<ol-source-webglpoints :url="url" @error="handleEvent" />
Methods
You have access to all Methods from the underlying source. Check out the official OpenLayers docs to see the available methods.
To access the source, you can use a ref()
as shown below:
<template>
<!-- ... -->
<ol-source-webglpoints :url="url" ref="sourceRef" />
<!-- ... -->
</template>
<script setup lang="ts">
import { ref, onMounted } from "vue";
import type VectorSource from "ol/source/vector";
const sourceRef = ref<{ source: VectorSource }>(null);
onMounted(() => {
const source: VectorSource = sourceRef.value?.source;
// call your method on `source`
});
</script>
<template>
<!-- ... -->
<ol-source-webglpoints :url="url" ref="sourceRef" />
<!-- ... -->
</template>
<script setup lang="ts">
import { ref, onMounted } from "vue";
import type VectorSource from "ol/source/vector";
const sourceRef = ref<{ source: VectorSource }>(null);
onMounted(() => {
const source: VectorSource = sourceRef.value?.source;
// call your method on `source`
});
</script>