Site Overlay

QUAD 700 Raptor Limited

Description:

QUAD 700 Raptor Limited

Nombre de propriétaires précédents: Première Main
Type: Quad/ATV
Cylindrée: 700 cm3 ; Kilométrage: 1255 ; Puissance: 20 ch(DIN)
Année Fabrication: 2006
Couleur: Noir/Jaune; Boîte de vitesses: Manuelle, 5 vitesses
Transmission: Chaîne ; Homologation de Route.
Contact: ben-morac-02@hotmail.fr

‘;

function map_init() {
jQuery(document).ready(function($) {
$(‘#map’).hide();
load();
$(‘#map’).fadeIn(1000);
codeAddress();
});
}

function load() {
geocoder = new google.maps.Geocoder();
//directionsDisplay = new google.maps.DirectionsRenderer();
var newyork = new google.maps.LatLng(40.69847032728747, -73.9514422416687);
var myOptions = {
zoom: 6,
center: newyork,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
}
}
map = new google.maps.Map(document.getElementById(‘map’), myOptions);
//directionsDisplay.setMap(map);
}

function codeAddress() {
geocoder.geocode( { ‘latLng’:SavedLatLng }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter();

var marker = new google.maps.Marker({
map: map,
icon: redFlag,
shadow: shadow,
//title: title,
animation: google.maps.Animation.DROP,
position: SavedLatLng });

var infowindow = new google.maps.InfoWindow({
maxWidth: 270,
content: contentString,
disableAutoPan: false
});

infowindow.open(map, marker);

google.maps.event.addListener(marker, ‘click’, function() {
infowindow.open(map,marker);
});

} else {
(function($) {
$(‘#map’).append(‘

Sorry, the address could not be found.

‘);
return false;
})(jQuery);
}
});
}

function showAddress(fromAddress, toAddress) {
calcRoute();
calcRoute1();
}
function calcRoute() {
var start = document.getElementById(« fromAdd »).value;
var end = document.getElementById(« toAdd »).value;
var request = {
origin: start,
destination: end,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
//]]>

Source

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *