sdssds
Posts: 1
Joined: Fri Oct 14, 2016 7:15 am

Pacific centered World Map

I need pacific-centered world map but i can not see this map in map collection reference

is it possible to support pacific-centered world map at hightcharts
amchart support pacific-centered world map through preminum map pack

I need your help

Regards
pawel_d
Posts: 1910
Joined: Thu Jun 02, 2016 10:28 am

Re: Pacific centered World Map

Hi sdssds,

You have three choices to use specific map. First, check Highcharts map collection to find a map: http://code.highcharts.com/mapdata/. Another one, you can find a SVG map and convert it with online converter. Here you can find exmple of pacific-centered world map converted from SVG file: http://www.highcharts.com/studies/map-f ... _World.svg. Lastly, you can try to create map on your own from scratch using an SVG editor. All required information regarding this approach can be found here: http://www.highcharts.com/docs/maps/custom-maps.

Example:
http://jsfiddle.net/d_paul/TUy7x/1226/ - map converted from SVG file

Regards.
Paweł Dalek
Highcharts Developer
User avatar
KacperMadej
Posts: 4632
Joined: Mon Sep 15, 2014 12:43 pm

Re: Pacific centered World Map

Based on a rotation's lambda option any part of the world could be used as a center. With lambda of 210 it looks like here: https://jsfiddle.net/BlackLabel/p5or2gfe/
Code reference:

Code: Select all

        mapView: {
            projection: {
                name: 'Miller',
                rotation: [210]
            }
        },
You could also see this in action with GUI for rotation and projection options in Highcharts Projection Explorer.
Kacper Madej
Highcharts Developer

Return to “Highcharts Maps”