From cd266a99e04cf1f23c3a4156ab6d173b7c839087 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Sat, 26 Jan 2008 14:46:12 +0000 Subject: [PATCH] Updating example for changed location where osm_id is stored git-svn-id: http://svn.openlayers.org/trunk/openlayers@5903 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/osm-layer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osm-layer.html b/examples/osm-layer.html index f6184e9853..52dfbe9992 100644 --- a/examples/osm-layer.html +++ b/examples/osm-layer.html @@ -27,7 +27,7 @@ if (feature.geometry.CLASS_NAME == "OpenLayers.Geometry.Point") { type = "node"; } - text += "
  • " + feature.fid + ": Edit, API
  • "; + text += "
  • " + feature.osm_id + ": Edit, API
  • "; for (var key in feature.attributes) { text += "
  • " + key + ": " + feature.attributes[key] + "
  • "; }