Changeset 1634791
- Timestamp:
- 04/10/2017 08:27:15 PM (9 years ago)
- Location:
- geoflickr
- Files:
-
- 4 edited
- 1 copied
-
tags/1.01 (copied) (copied from geoflickr/trunk)
-
tags/1.01/js/geoflickr_map.js (modified) (1 diff)
-
tags/1.01/readme.txt (modified) (1 diff)
-
trunk/js/geoflickr_map.js (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
geoflickr/tags/1.01/js/geoflickr_map.js
r1504515 r1634791 20 20 description += geodata.photo.location.county._content+", " 21 21 } 22 description += "<br/>"+geodata.photo.location.region._content+", "+geodata.photo.location.country._content+". <p style='font-size: 6pt' >Location description as supplied by Flickr. May be incomplete or inaccurate!</p>"; 22 23 if (geodata.photo.location.region){ 24 description += geodata.photo.location.region._content+", " 25 } 26 27 if (geodata.photo.location.country){ 28 description += geodata.photo.location.country._content 29 } 30 31 description += "<br/>"+". <p style='font-size: 6pt' >Location description as supplied by Flickr. May be incomplete or inaccurate!</p>"; 23 32 24 33 var latlng = new google.maps.LatLng(centerLatitude, centerLongitude); -
geoflickr/tags/1.01/readme.txt
r1504576 r1634791 66 66 == Changelog == 67 67 68 = 1.01 (20170410) = 69 * Fixed map not loading when _content is empty 70 68 71 = 1.0 (20160917) = 69 72 * Fixed old variables calls with up-to-date ones that support HTTPS -
geoflickr/trunk/js/geoflickr_map.js
r1504515 r1634791 20 20 description += geodata.photo.location.county._content+", " 21 21 } 22 description += "<br/>"+geodata.photo.location.region._content+", "+geodata.photo.location.country._content+". <p style='font-size: 6pt' >Location description as supplied by Flickr. May be incomplete or inaccurate!</p>"; 22 23 if (geodata.photo.location.region){ 24 description += geodata.photo.location.region._content+", " 25 } 26 27 if (geodata.photo.location.country){ 28 description += geodata.photo.location.country._content 29 } 30 31 description += "<br/>"+". <p style='font-size: 6pt' >Location description as supplied by Flickr. May be incomplete or inaccurate!</p>"; 23 32 24 33 var latlng = new google.maps.LatLng(centerLatitude, centerLongitude); -
geoflickr/trunk/readme.txt
r1504576 r1634791 66 66 == Changelog == 67 67 68 = 1.01 (20170410) = 69 * Fixed map not loading when _content is empty 70 68 71 = 1.0 (20160917) = 69 72 * Fixed old variables calls with up-to-date ones that support HTTPS
Note: See TracChangeset
for help on using the changeset viewer.