Exemple #1
0
        public void Redraw()
        {
            mapServiceJS.MapInit(this);
            mapServiceJS.MapSetCenterZoom(center, zoom, this);
            mapServiceJS.MapSetStyle(mapStyle, this);

            foreach (MapShapes shape in mapShapeList.Values)
            {
                shape.Redraw();
                mapServiceJS.MapAddShape(shape, this);
            }
        }