Trying to control the center and zoom of pigeon maps (doesn't work on my phone)
This commit is contained in:
parent
a0ee63ef09
commit
d8c3035bb2
|
@ -4,21 +4,30 @@ import { Map, Marker } from "pigeon-maps"
|
|||
import { Geolocation } from "@awesome-cordova-plugins/geolocation";
|
||||
|
||||
const LiveMap: react.FC = () => {
|
||||
const initialPosition: [number, number] = [44.73574, 6.18981];
|
||||
const [currentPosition, setCurrentposition] = useState(initialPosition);
|
||||
const initialCenter: [number, number] = [44.73574, 6.18981];
|
||||
const initialZoom: number = 13;
|
||||
const [center, setCenter] = useState(initialCenter);
|
||||
const [position, setPosition] = useState(initialCenter);
|
||||
const [zoom, setZoom] = useState(initialZoom);
|
||||
|
||||
useEffect(()=>{
|
||||
Geolocation.getCurrentPosition().then((position) =>
|
||||
{
|
||||
setCurrentposition([position.coords.latitude, position.coords.longitude]);
|
||||
}
|
||||
setCenter([position.coords.latitude, position.coords.longitude]);
|
||||
setPosition([position.coords.latitude, position.coords.longitude]);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<Map center={currentPosition} defaultZoom={11}>
|
||||
<Marker width={50} anchor={currentPosition} />
|
||||
<Map center={center} zoom={zoom} onBoundsChanged={
|
||||
({center, zoom}) => {
|
||||
setCenter(center);
|
||||
setZoom(zoom);
|
||||
}
|
||||
}>
|
||||
<Marker width={20} anchor={position} />
|
||||
</Map>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue