Type alias TMapViewRNOptions

TMapViewRNOptions: {
    loadOptions?: {
        mapRenderStrategy?: MAP_RENDER_MODE;
    };
    prepareSearch?: boolean;
    searchOptions?: TMappedinOfflineSearchOptions;
    useBundle?: boolean;
}

Type declaration

  • Optional loadOptions?: {
        mapRenderStrategy?: MAP_RENDER_MODE;
    }
    • Optional mapRenderStrategy?: MAP_RENDER_MODE

      By default, the SDK will merge all geometries by material to reduce the number of draw calls to the GPU To rever back to using a single geometry for every polygon, pass MAP_RENDER_MODE.MULTI_GEOMETRY

  • Optional prepareSearch?: boolean

    Generate a search index for venue when rendering map, instead of deferring to when the first search occurs.

    Default

    false
    
  • Optional searchOptions?: TMappedinOfflineSearchOptions

    Customize search weights

  • Optional Beta useBundle?: boolean

    Use a bundle for venue loading and cache it for faster subsequent loading