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";
|
import { Geolocation } from "@awesome-cordova-plugins/geolocation";
|
||||||
|
|
||||||
const LiveMap: react.FC = () => {
|
const LiveMap: react.FC = () => {
|
||||||
const initialPosition: [number, number] = [44.73574, 6.18981];
|
const initialCenter: [number, number] = [44.73574, 6.18981];
|
||||||
const [currentPosition, setCurrentposition] = useState(initialPosition);
|
const initialZoom: number = 13;
|
||||||
|
const [center, setCenter] = useState(initialCenter);
|
||||||
|
const [position, setPosition] = useState(initialCenter);
|
||||||
|
const [zoom, setZoom] = useState(initialZoom);
|
||||||
|
|
||||||
useEffect(()=>{
|
useEffect(()=>{
|
||||||
Geolocation.getCurrentPosition().then((position) =>
|
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 (
|
return (
|
||||||
<Map center={currentPosition} defaultZoom={11}>
|
<Map center={center} zoom={zoom} onBoundsChanged={
|
||||||
<Marker width={50} anchor={currentPosition} />
|
({center, zoom}) => {
|
||||||
|
setCenter(center);
|
||||||
|
setZoom(zoom);
|
||||||
|
}
|
||||||
|
}>
|
||||||
|
<Marker width={20} anchor={position} />
|
||||||
</Map>
|
</Map>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue