Controllerseite
controller.rb
def show
@location = Location.find(params[:id])
end
Ansichtsseite
<script>
{
const num1 = <%= @location.num1 %> <%#Auswechslung%>
const num2 = <%= @location.num2 %> <%#Auswechslung%>
var MyLatLng = new google.maps.LatLng(num1, num2);
var Options = {
zoom: 15, //Kartenmaßstabswert
center: MyLatLng, //Kartenmittenkoordinaten
mapTypeId: 'roadmap' //Kartentyp
};
var map = new google.maps.Map(document.getElementById('map'), Options);
}
</script>
Recommended Posts