When looking at MySQL's Polygon Functions page, one can see comprehensive examples for using the polygon/spatial functions but it does not say something about the format of the polygon points.
An example of a polygon string is
Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))
but it is not clear whether it is using LatLng or LngLat.
What is the correct MySQL Polygon format for Latitude and Longitude?