From: Bjoern Schiessle Date: Wed, 27 Jun 2012 09:39:49 +0000 (+0200) Subject: enable highlighting of address in OSM. X-Git-Tag: v4.0.5~51 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7af76e36e12a80225a18c1bcd89e3ed1c865aaeb;p=nextcloud-server.git enable highlighting of address in OSM. --- diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index a87f7ca10d6..a2a7b1bb389 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -48,7 +48,7 @@ Contacts={ adrstr = adrstr + adrarr[6].trim(); } adrstr = encodeURIComponent(adrstr); - var uri = 'http://open.mapquestapi.com/nominatim/v1/search.php?q=' + adrstr + '&limit=10&addressdetails=1&zoom='; + var uri = 'http://open.mapquestapi.com/nominatim/v1/search.php?q=' + adrstr + '&limit=10&addressdetails=1&polygon=1&zoom='; var newWindow = window.open(uri,'_blank'); newWindow.focus(); },