Skip to content

Commit 6fc67b3

Browse files
authored
Merge pull request #83 from erdem/v0.2.1
Fixed swapped coordinates bug
2 parents 67602a2 + 2a308a4 commit 6fc67b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mapwidgets/static/mapwidgets/js/django_mw_base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
},
9191

9292
updateLocationInput: function(lat, lng, place){
93-
var location_input_val = "POINT (" + lng + " " + lat + ")";
93+
var location_input_val = "POINT (" + lat + " " + lng + ")";
9494
this.locationInput.val(location_input_val);
9595
this.updateCoordinatesInputs(lat, lng);
9696
this.addMarkerToMap(lat, lng);

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = (0, 2, 0)
3+
VERSION = (0, 2, 1)
44
__version__ = '.'.join(map(str, VERSION))
55

66
setup(

0 commit comments

Comments
 (0)