_google_map.rhtml
7.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<%= content_tag('script', '', :src => "http://maps.googleapis.com/maps/api/js?sensor=false", :type => 'text/javascript') %>
<script type="text/javascript" >
var geocoder;
var map;
var marker;
var center;
var move = true;
var previousCenter;
function getAddress(latlng) {
$('location-fields').addClassName("loading");
if (latlng != null) {
geocoder.geocode( {'latLng': latlng}, showAddress);
}
}
function codeAddress() {
$('location-fields').addClassName("loading");
var country_option = $('profile_data_country').value;
var address = $('profile_data_address').value + "-" + $('profile_data_zip_code').value + "," + $('profile_data_city').value+ "-" + $('profile_data_state').value + "," + country_option;
if (geocoder) {
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
marker.setPosition(results[0].geometry.location);
$('profile_data_lat').value = results[0].geometry.location.lat();
$('profile_data_lng').value = results[0].geometry.location.lng();
$('location-fields').removeClassName("loading");
enable_save();
} else {
$('location-fields').removeClassName("loading");
alert('<%=_("Address not found, reason:")%>' + translate_status(status));
}
});
}
return false;
}
function translate_status(status)
{
var translated_status = '';
if(google.maps.GeocoderStatus.INVALID_REQUEST == status)
{
translated_status = '<%= _('Invalid address') %>';
}
if(google.maps.GeocoderStatus.REQUEST_DENIED == status)
{
translated_status = '<%= _('Request denied') %>';
}
if(google.maps.GeocoderStatus.OVER_QUERY_LIMIT == status)
{
translated_status = '<%= _('Over query limit') %>';
}
if(google.maps.GeocoderStatus.ZERO_RESULTS == status)
{
translated_status = "<%= _('Address do not exist') %>";
}
return translated_status;
}
function getAddressData() {
var text = '';
var fields = [
'profile_data_country',
'profile_data_state',
'profile_data_city',
'profile_data_address',
'profile_data_zip_code'
];
for (var i = 0; i < fields.length; i++) {
var field = fields[i];
if ($(field)) {
text += $(field).value + " ";
}
}
return text;
}
function showAddress(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
updateFields(results[0]);
} else {
alert("<%=_("Address not found, reason:")%>" + translate_status(status));
}
}
function updateFields(place) {
var position = marker.getPosition();
$('profile_data_lat').value = position.lat();
$('profile_data_lng').value = position.lng();
$('location-fields').removeClassName("loading");
var components_len = place.address_components.size();
if(components_len < 2)
{
return false;
}
var components = place.address_components;
var address = "";
var zip_code = "";
var city = "";
var state = "";
var country_code = "";
var i = 0;
for( i =0 ; i < components_len; i ++)
{
if(components[i].types[0] == 'country')
{
country_code = components[i].short_name;
}
if(components[i].types[0] == 'administrative_area_level_1')
{
state = components[i].long_name;
}
if(components[i].types[0] == 'locality')
{
city = components[i].long_name;
}
if(components[i].types[0] == 'sublocality')
{
address = components[i].long_name + "-" + address;
}
if(components[i].types[0] == "route")
{
address = components[i].long_name + address;
}
if(components[i].types[0] == "street_number")
{
address = address + "," + components[i].short_name ;
}
if(components[i].types[0] == 'postal_code')
{
zip_code = components[i].short_name;
}
}
$('profile_data_country').value = country_code;
$('profile_data_state').value = state;
$('profile_data_address').value = address;
$('profile_data_city').value = city;
$('profile_data_zip_code').value = zip_code;
}
function initialize_map() {
geocoder = new google.maps.Geocoder();
var lat = <%= profile.lat || 'false' %>;
var lng = <%= profile.lng || 'false' %>;
if ( !(lat && lng) ) {
lat = -15.7605361485013;
lng = -47.933349609375;
}
var latlng = new google.maps.LatLng(lat,lng);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
center = latlng;
map = new google.maps.Map(document.getElementById("location-map"), myOptions);
continueLoadMapV3()
}
function continueLoadMapV3() {
marker = new google.maps.Marker({
position: center,
map: map,
draggable: true
});
google.maps.event.addListener(marker, "dragend", function() {
move = false;
getAddress(marker.getPosition());
});
}
window.onload = initialize_map;
var delay_autocomplete = 500;
jQuery.noConflict();
jQuery(document).ready(function (){
jQuery.widget( "custom.catcomplete",jQuery.ui.autocomplete, {
_renderMenu: function( ul, items ) {
var self = this,
currentCategory = "";
jQuery.each( items, function( index, item ) {
if ( item.category != currentCategory ) {
ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
self._renderItem( ul, item );
});
}
});
jQuery("#profile_data_city").catcomplete({
source: "../maps/search_city",
minLength: 3,
delay: delay_autocomplete,
select: function( event, ui ) { $('profile_data_state').value =( ui.item ? ui.item.category : this.value ); }
});
jQuery("#profile_data_state").autocomplete({
source: "../maps/search_state",
minLength: 3,
delay: delay_autocomplete
});
jQuery("#profile_data_city").keyup(function(){
disable_save();
});
jQuery("#profile_data_state").keyup(function(){
disable_save();
});
jQuery("#profile_data_country").change(function(){
disable_save();
});
});
function disable_save()
{
jQuery('input[type="submit"]').attr("disabled", "true");
jQuery('input[type="submit"]').attr("value", '<%=_("Localize before save")%>');
jQuery('input[type="submit"]').attr("class", "disabled button icon-save submit");
}
function enable_save()
{
jQuery('input[type="submit"]').attr("value", '<%=_("Save")%>');
jQuery('input[type="submit"]').removeAttr("disabled");
jQuery('input[type="submit"]').attr("class", "button icon-save submit");
}
</script>