Skip to content

Commit

Permalink
fix todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pakb committed Dec 4, 2023
1 parent f723877 commit d8f955e
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/modules/map/components/common/mouse-click.composable.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,12 @@ export function useMouseOnMap() {
if (!hasPointerDownTriggeredLocationPopup && isStillOnStartingPosition) {
const features = []
// if there is a GeoJSON layer currently visible, we will find it and search for features under the mouse cursor
visibleGeoJsonLayers.value.forEach((geoJSonLayer) => {
console.log(
'GeoJSON features',
geoJSonLayer
// booleanIntersects(geoJSonLayer, coordinate)
)
// features.push(...this.handleClickOnGeoJsonLayer(event, geoJSonLayer))
visibleGeoJsonLayers.value.forEach((_geoJSonLayer) => {
// TODO: implements OpenLayers-free feature identification
})
visibleKMLLayers.value.forEach(() => {
// features.push(...this.handleClickOnKMLLayer(event, KMLLayer))
// same for KML layers
visibleKMLLayers.value.forEach((_kmlLayer) => {
// TODO: implements OpenLayers-free feature identification
})
store.dispatch(
'click',
Expand Down

0 comments on commit d8f955e

Please sign in to comment.