File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/main/java/il/org/osm/israelhiking Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -429,13 +429,17 @@ private void addNonIconFeaturesToElasricseach(SourceFeature feature) throws Geom
429429 }
430430 var pointDocument = new PointDocument ();
431431 if (feature .hasTag ("amenity" , "place_of_worship" ) ||
432- feature .hasTag ("railway" , "station" ) ||
433- feature .hasTag ("aerialway" , "station" ) ||
434432 feature .hasTag ("natural" , "valley" )) {
435433 pointDocument .poiIcon = "icon-search" ;
436434 pointDocument .poiIconColor = "black" ;
437435 pointDocument .poiCategory = "Other" ;
438436 }
437+ if (feature .hasTag ("railway" , "station" ) ||
438+ feature .hasTag ("aerialway" , "station" )) {
439+ pointDocument .poiIcon = "icon-bus-stop" ;
440+ pointDocument .poiIconColor = "black" ;
441+ pointDocument .poiCategory = "Other" ;
442+ }
439443 if (feature .hasTag ("natural" , "ridge" )) {
440444 pointDocument .poiIcon = "icon-peak" ;
441445 pointDocument .poiIconColor = "black" ;
You can’t perform that action at this time.
0 commit comments