|
@@ -5,6 +5,9 @@ export default (mapRef, point1) => {
|
|
|
// when the map is clicked, call the scoring API and update the marker's title
|
|
|
useClickMarker(mapRef, async (point2, marker) => {
|
|
|
const { score } = await checkScore(point1, point2);
|
|
|
- marker.setTitle(`Potential Score: ${score}`);
|
|
|
+ marker.setLabel({
|
|
|
+ fontWeight: "500",
|
|
|
+ text: `Potential Score: ${score}`
|
|
|
+ });
|
|
|
});
|
|
|
}
|