Визиком карты

Markers

The markers are used to mark a certain point on the map. Proper image and message box describing given point can be selected for the marker.

Examples:

This example creates the information window in a certain place of the screen without the possibility of closing its from user.

Display in browser:

Source code:

info = new VInfoWindow({lng: 30.5112, lat: 50.4550},
                        "The text of information window",
                        {alwaysOpen: true, canClose: false}
                        );
map.add(info);
map.repaint();