render Map tab as 'a'; remove logs;

This commit is contained in:
2025-09-25 16:37:17 +09:00
parent 26132fc1ee
commit 5dd75ead39
2 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,6 @@ export const zoomToFeature = (map_id: string, feature: Feature | undefined) => {
}
export const getFeatureByEntityId = (entity_id: number, layer: VectorImageLayer<Feature<Geometry>, VectorSource<Feature<Geometry>>>) => {
console.log(entity_id, layer.getSource()?.getFeatures())
return layer.getSource()?.getFeatures().find(feature => feature.getProperties().entity_id === entity_id)
}