.. highlightlang:: us .. index:: MapLoad .. _mapload: MapLoad ======= .. us.tag MapLoad NOTREADYENGLISH Map_Set Changed500 :ref:`MapLoad` loads a map from a file, that was created with the :ref:`MapSave` function. .. function:: bool = MapLoad(hMap, ssFileName) .. us.return **Return Value** If the function succeeds, the return value *bool* is TRUE (1); otherwise it is FALSE (0). .. us.params **Parameters** .. uparam:: hMap *hMap* Identifies the map. .. uparam:: ssFileName *ssFileName* is the complete file name. .. us.example **Example** :: hMap = MapCreate(); MapLoad(hMap, "c:/data.map"); .. seealso:: :ref:`overview-map`, :ref:`MapCreate`, :ref:`MapSave` :sub:`id-219779`