 | CMVUMapFromPLT Method |
Creates a new map from a PLT file.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void MapFromPLT(
CMAP map,
string base,
string data,
string plt,
double mpx,
double mpy
)
public static void MapFromPLT(
CMAP map,
string base,
string data,
string plt,
double mpx,
double mpy
)
Public Shared Sub MapFromPLT (
map As CMAP,
base As String,
data As String,
plt As String,
mpx As Double,
mpy As Double
)
Public Shared Sub MapFromPLT (
map As CMAP,
base As String,
data As String,
plt As String,
mpx As Double,
mpy As Double
)
public:
static void MapFromPLT(
CMAP^ map,
String^ base,
String^ data,
String^ plt,
double mpx,
double mpy
)
public:
static void MapFromPLT(
CMAP^ map,
String^ base,
String^ data,
String^ plt,
double mpx,
double mpy
)
static member MapFromPLT :
map : CMAP *
base : string *
data : string *
plt : string *
mpx : float *
mpy : float -> unit
static member MapFromPLT :
map : CMAP *
base : string *
data : string *
plt : string *
mpx : float *
mpy : float -> unit
Parameters
- map
- Type: GeoEngine.Core.GXNetCMAP
MAP Handle - base
- Type: SystemString
Name to use for the base map view - data
- Type: SystemString
Name to use for the data view - plt
- Type: SystemString
Plot file name - mpx
- Type: SystemDouble
Map paper size in X direction (cm) - mpy
- Type: SystemDouble
Map paper size in Y direction (cm)
Remarks
This only creates a map, it does not read the PLT into
the map. The base view and data view will be the same
size.
See Also