问题
I have application where gps info are extracted from photo with gps data. When I want to update position by edit action, I would like to drag a marker, replace it and save new position. When I click to map, old marker is still there, so there are two markers. First is old and second is new one, dragable. I update form ids in javascript but new position is not saved. When I check length of array in javascript, then there is nothing there. But if I see source of page, there are few markers in array. Am I missing something?
Thank you
properites_controller.rb
def edit
@property = Property.find(params[:id])
@json = Property.find(params[:id]).to_gmaps4rails
end
def update
@property = Property.find(params[:id])
if @property.update_attributes(params[:property])
redirect_to @property, notice: 'Property was successfully updated.'
else
render action: "edit"
end
end
edit.html.erb
<%= render 'form' %>
<div id="map_canvas">
<%= gmaps("map_options" => { "zoom" => 15, "auto_adjust" => true, "auto_zoom" => false},
"markers" => {"data" => @json}) %>
</div>
<% content_for :scripts do %>
<script type="text/javascript" charset="utf-8">
var markersArray = [];
// On click, clear markers, place a new one, update coordinates in the form
Gmaps.map.callback = function() {
google.maps.event.addListener(Gmaps.map.serviceObject, 'click', function(event) {
clearOverlays();
placeMarker(event.latLng);
updateFormLocation(event.latLng);
});
};
// Update form attributes with given coordinates
function updateFormLocation(latLng) {
$('#property_latitude').val(latLng.lat());
$('#property_longitude').val(latLng.lng());
$('#property_gmaps_zoom').val(Gmaps.map.serviceObject.getZoom());
}
// Add a marker with an open infowindow
function placeMarker(latLng) {
var marker = new google.maps.Marker({
position: latLng,
map: Gmaps.map.serviceObject,
draggable: true
});
markersArray.push(marker);
// Set and open infowindow
var infowindow = new google.maps.InfoWindow({
content: '<div class="popup"><h2>Awesome!</h2><p>Drag me and adjust the zoom level.</p>'
});
infowindow.open(Gmaps.map.serviceObject,marker);
// Listen to drag & drop
google.maps.event.addListener(marker, 'dragend', function() {
updateFormLocation(this.getPosition());
});
}
// Removes the overlays from the map
function clearOverlays() {
if (markersArray) {
for (var i = 0; i < markersArray.length; i++ ) {
markersArray[i].serviceObject.setMap(null);
//markersArray[i].setMap(null);
}
}
markersArray.length = 0;
}
</script><% end %>
_form.html.erb
<%= simple_form_for @property, :html => {:multipart => true} do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :name, :label => "Název", :input_html => { :class => "input-xlarge"} %>
<%= f.input :description, :label => "Popis", :input_html => { :class => "input-xlarge", :rows => "6"} %><br />
<%= f.hidden_field :latitude %>
<%= f.hidden_field :longitude %>
<%= f.input :date, :label => "Datum", :as => :date %>
<%= f.file_field :photo %>
</div>
<div class="form-actions">
<%= link_to 'Zpět', properties_path, :class => 'btn' %>
<%= f.button :submit, :class => 'btn-primary' %>
</div>
<% end %>
回答1:
You're using a markersArray
not maintained by the gem's javascript.
You should simply use Gmaps.map.markers
, it contains all markers information.
来源:https://stackoverflow.com/questions/12209597/gmaps4rails-drop-marker-to-new-position