We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 653981d commit 99fce46Copy full SHA for 99fce46
1 file changed
examples/map-server/src/mcp-app.ts
@@ -244,7 +244,9 @@ async function getVisiblePlaces(extent: BoundingBox): Promise<string[]> {
244
const place = await reverseGeocode(point.lat, point.lon);
245
if (place) {
246
places.add(place);
247
- log.info(`Found place: ${place} at ${point.lat.toFixed(4)}, ${point.lon.toFixed(4)}`);
+ log.info(
248
+ `Found place: ${place} at ${point.lat.toFixed(4)}, ${point.lon.toFixed(4)}`,
249
+ );
250
}
251
252
0 commit comments