je reçois l'erreur suivante
Erreur d'analyse: opérateur de jeton inattendu «=», punc attendu «,» ligne 159, colonne 26
C'est mon code
function fitBounds(type="all", shape=null) {
var bounds = new google.maps.LatLngBounds();
if ( type == "all" ){
if ((circles.length > 0) | (polygons.length > 0)){
$.each(circles, function(index, circle){
bounds.union(circle.getBounds());
});
$.each(polygons, function(index, polygon){
polygon.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
});
}
}
else if ( (type == "single") && (shape != null) ) {
if (shape.type == google.maps.drawing.OverlayType.MARKER) {
marker_index = markers.indexOf(shape);
bounds.union(circles[marker_index].getBounds());
}
else {
shape.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
}
}
if (bounds.isEmpty() != true)
{
map.fitBounds(bounds);
}
}
Vous essayez d’utiliser Les paramètres par défaut , qui constituent une fonctionnalité avancée de JavaScript avec une prise en charge limitée .
JS Lint les refuse sauf si vous activez l'option ES6.
@Quentin est tout à fait juste: vous avez besoin de l'option es6
.
JSLint échoue cependant, et bien plus encore, avec votre utilisation de ==
, qui est un "opérateur de contrainte" - check JSLint sur l'égalité - et l'option bitwise
DANS LA SECTION jslint
(il n'y a pas de lien directement aux directives jslint, je ne pense pas, alors j’ai mis un lien juste au-dessus). Comme @AxelH le suggère, vous voudrez probablement nous demander plus. ; ^)
Voici une version qui imprime/ JSLint.com dans sa version actuelle. Notez la ligne de directive /*jslint
en haut qui inclut la balise es6
:
/*jslint es6, white, browser */
/*global google, $ */
// These weren't declared, so I'm assuming they're
// within scope in your snippet's context.
// I put others that felt like globals (google, $)
// into globals, above.
var marker_index;
var markers;
var circles;
var polygons;
var map;
function fitBounds(type="all", shape=null) {
var bounds = new google.maps.LatLngBounds();
if ( type === "all" ){
// not sure why you're using bitwise `|` here.
// I think this'll be equivalent, though you should
// be able to set `bitwise` as an option if it's not.
// Still, you're evaluating to booleans, so `|` doesn't
// seem appropriate here.
if ((circles.length > 0) || (polygons.length > 0)){
$.each(circles, function(ignore, circle){
bounds.union(circle.getBounds());
});
$.each(polygons, function(ignore, polygon){
polygon.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
});
}
}
else if ( (type === "single") && (shape !== null) ) {
if (shape.type === google.maps.drawing.OverlayType.MARKER) {
marker_index = markers.indexOf(shape);
bounds.union(circles[marker_index].getBounds());
}
else {
shape.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
}
}
if (!bounds.isEmpty())
{
map.fitBounds(bounds);
}
}
@Quentin a raison avec sa réponse. Vous obtenez une erreur de syntaxe pour des raisons qu'il a mentionnées. Ce que je peux ajouter, c'est que vous pouvez essayer de supprimer la syntaxe EC6 et de réécrire votre fonction sur un vieux bon JS.
// change from
function fitBounds(type="all", shape=null)
// change to
function fitBounds(type="all", shape)
Une solution à ce problème pourrait être la suivante:
function fitBounds(type, shape_aux) {
var bounds = new google.maps.LatLngBounds();
if(typeof type === "undefined") {
type = "all";
}
if(typeof shape_aux !== undefined) {
shape = shape_aux;
} else {
shape = null;
}
if ( type == "all" ){
if ((circles.length > 0) | (polygons.length > 0)){
$.each(circles, function(index, circle){
bounds.union(circle.getBounds());
});
$.each(polygons, function(index, polygon){
polygon.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
});
}
}
else if ( (type == "single") && (shape != null) ) {
if (shape.type == google.maps.drawing.OverlayType.MARKER) {
marker_index = markers.indexOf(shape);
bounds.union(circles[marker_index].getBounds());
}
else {
shape.getPath().getArray().forEach(function(latLng){
bounds.extend(latLng);
});
}
}
if (bounds.isEmpty() != true)
{
map.fitBounds(bounds);
}
}