Use double click rather than single click to query the map
This commit is contained in:
parent
bb763435ef
commit
da76e30fc4
|
@ -290,7 +290,7 @@ const Map: Component = () => {
|
|||
moveTolerance: 10,
|
||||
interactions: new Collection<Interaction>([
|
||||
new DragRotate(),
|
||||
new DoubleClickZoom(),
|
||||
// new DoubleClickZoom(),
|
||||
new DragPan(),
|
||||
new PinchRotate(),
|
||||
new PinchZoom(),
|
||||
|
@ -301,7 +301,7 @@ const Map: Component = () => {
|
|||
]),
|
||||
});
|
||||
olMap.on(['moveend'], changeListener);
|
||||
olMap.on(['singleclick'], clickHandler);
|
||||
olMap.on(['dblclick'], clickHandler);
|
||||
|
||||
setMap(olMap);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue