Skip to content

Instantly share code, notes, and snippets.

@Yelakelly
Last active November 14, 2016 18:43
Show Gist options
  • Save Yelakelly/9eff165d8dd01e6fb64c72fb978123f3 to your computer and use it in GitHub Desktop.
Save Yelakelly/9eff165d8dd01e6fb64c72fb978123f3 to your computer and use it in GitHub Desktop.
YandexMap - (with icon)
ymaps.ready(function () {
var myMap = new ymaps.Map('map', {
center: [55.7404033, 37.5913301],
zoom: 15,
controls: []
});
myMap.geoObjects
.add(new ymaps.Placemark([55.7404033, 37.5913301], {
balloonContent: 'Stars-stroy <br> <strong> Москва, ул. Пречистенка, д. 27</strong>'
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment