1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import React, { useState, useCallback, useRef } from 'react';
import {
GoogleMap,
useJsApiLoader,
Marker,
Autocomplete,
} from '@react-google-maps/api';
import { useMaps } from '../stores/useMaps';
import { LocateFixed, MapPinIcon } from 'lucide-react';
import { Button } from '@chakra-ui/react';
const containerStyle = {
width: '100%',
height: '400px',
};
const center = {
lat: -6.2, // Default latitude (Jakarta)
lng: 106.816666, // Default longitude (Jakarta)
};
const PinpointLocation = () => {
const { isLoaded } = useJsApiLoader({
googleMapsApiKey: process.env.NEXT_PUBLIC_GOOGLE_API_KEY, // Pastikan API key ada di .env.local
libraries: ['places'],
});
const { addressMaps, setAddressMaps, selectedPosition, setSelectedPosition } =
useMaps();
const [tempAddress, setTempAddress] = useState('');
const [tempPosition, setTempPosition] = useState(center);
const autocompleteRef = useRef(null);
const onMapClick = useCallback((event) => {
const lat = event.latLng.lat();
const lng = event.latLng.lng();
setTempPosition({ lat, lng });
getAddress(lat, lng);
}, []);
const handlePlaceSelect = () => {
const place = autocompleteRef.current.getPlace();
if (place && place.geometry) {
const lat = place.geometry.location.lat();
const lng = place.geometry.location.lng();
setTempPosition({ lat, lng });
setTempAddress(place.formatted_address);
}
};
const getAddress = async (lat, lng) => {
try {
const response = await fetch(
`https://maps.googleapis.com/maps/api/geocode/json?latlng=${lat},${lng}&key=${process.env.NEXT_PUBLIC_GOOGLE_API_KEY}`
);
const data = await response.json();
if (data.results[0]) {
setTempAddress(data.results[0].formatted_address);
}
} catch (error) {
console.error('Error fetching address:', error);
}
};
const handleUseCurrentLocation = () => {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
(position) => {
const lat = position.coords.latitude;
const lng = position.coords.longitude;
setTempPosition({ lat, lng });
getAddress(lat, lng);
},
(error) => {
console.error('Error getting current location:', error);
}
);
}
};
const handleSavePinpoint = (event) => {
event.preventDefault();
if(tempAddress === '') {
alert('Silahkan pilih lokasi terlebih dahulu');
return;
}
setSelectedPosition(tempPosition);
setAddressMaps(tempAddress);
};
return (
<div className='w-full'>
<h3>Tentukan Pinpoint Lokasi</h3>
<div style={{ marginBottom: '10px' }}>
{isLoaded ? (
<Autocomplete
onLoad={(ref) => (autocompleteRef.current = ref)}
onPlaceChanged={handlePlaceSelect}
>
<input
type='text'
placeholder='Cari Alamat...'
style={{ width: '100%', padding: '8px' }}
/>
</Autocomplete>
) : (
<p>Loading autocomplete...</p>
)}
</div>
<div>
{isLoaded ? (
<GoogleMap
mapContainerStyle={containerStyle}
center={tempPosition}
zoom={15}
onClick={onMapClick}
>
<Marker
position={tempPosition}
draggable={true}
onDragEnd={(e) => onMapClick(e)}
icon={{
url: 'https://maps.google.com/mapfiles/ms/icons/red-pushpin.png',
scaledSize: new window.google.maps.Size(40, 40),
}}
/>
</GoogleMap>
) : (
<p>Loading map...</p>
)}
</div>
<div style={{ marginTop: '20px' }}>
<Button
variant='solid'
onClick={handleUseCurrentLocation}
>
<LocateFixed class='h-6 w-6 text-gray-500 mr-2' /> Gunakan Lokasi Saat
ini
</Button>
</div>
<div style={{ marginTop: '10px' }}>
<p>PinPoint :</p>
<div className='flex gap-x-2 shadow-md rounded-sm text-gray-500 p-3 items-center'>
<MapPinIcon class='h-8 w-8 text-gray-500 mr-3' />
<label> {tempAddress}</label>
</div>
</div>
<div className='mt-6 flex justify-end'>
<button className='p-3 border border-red-500 bg-red-600 text-white font-semibold rounded-lg' onClick={handleSavePinpoint}>
Simpan Lokasi Ini
</button>
</div>
</div>
);
};
export default PinpointLocation;
|