Skip to content

Commit

Permalink
refactor(FeatureToolTip): update for official kml and geojson flux
Browse files Browse the repository at this point in the history
  • Loading branch information
ftoromanoff committed May 4, 2023
1 parent 8e04cd8 commit 6e2a98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/js/plugins/FeatureToolTip.js
Expand Up @@ -109,7 +109,7 @@ var FeatureToolTip = (function _() {
content += '</span>';

if (geometry.properties) {
content += (geometry.properties.name || geometry.properties.nom || geometry.properties.description || layer.name || '');
content += (geometry.properties.description || geometry.properties.name || geometry.properties.nom || layer.name || '');
}

if (feature.type === itowns.FEATURE_TYPES.POINT) {
Expand Down

0 comments on commit 6e2a98c

Please sign in to comment.