We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$scope.markers[nombre] = { lat: latitud, lng: longitud, draggable: false };
it works with: nombre = 'BB Hotel Granada'
if nombre = 'B&B Hotel Granada' I need nombre = nombre.replace(/&/g, "&"); so it works with: nombre = 'B&B Hotel Granada'
But i nombre = 'BB Hotel. Granada' doesn't work
if there is a dot in name doesn't work
Thanks in advance
The text was updated successfully, but these errors were encountered:
it is possible to use something like: Marker (location = [45.5, -122.3], popup = Popup ('Mom & Pop Arrow Shop >>', parse_html = True)) Thank you
Sorry, something went wrong.
No branches or pull requests
$scope.markers[nombre] = {
lat: latitud,
lng: longitud,
draggable: false
};
it works with:
nombre = 'BB Hotel Granada'
if nombre = 'B&B Hotel Granada' I need nombre = nombre.replace(/&/g, "&"); so
it works with:
nombre = 'B&B Hotel Granada'
But i nombre = 'BB Hotel. Granada' doesn't work
if there is a dot in name doesn't work
Thanks in advance
The text was updated successfully, but these errors were encountered: