├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── nextgis │ └── maplibui │ └── ApplicationTest.java └── main ├── AndroidManifest.xml ├── assets ├── compass_baseplate.png ├── compass_bezel.png └── compass_needle.png ├── java └── com │ └── nextgis │ └── maplibui │ ├── GISApplication.java │ ├── account │ ├── NGWAccountAuthenticator.java │ └── NGWAuthenticatorService.java │ ├── activity │ ├── AttributesActivity.java │ ├── FormBuilderModifyAttributesActivity.java │ ├── LayerSettingsActivity.java │ ├── ModifyAttributesActivity.java │ ├── NGActivity.java │ ├── NGIDLoginActivity.java │ ├── NGIDSettingsActivity.java │ ├── NGPreferenceActivity.java │ ├── NGWLoginActivity.java │ ├── NGWSettingsActivity.java │ ├── SelectNGWResourceActivity.java │ ├── TMSLayerSettingsActivity.java │ ├── TracksActivity.java │ └── VectorLayerSettingsActivity.java │ ├── adapter │ ├── GridAutofitLayoutManager.java │ ├── ListSelectorAdapter.java │ ├── LocalResourceListAdapter.java │ ├── LocalResourceListItem.java │ ├── LocalResourceListLoader.java │ ├── SimpleDividerItemDecoration.java │ └── attributes │ │ ├── Cell.java │ │ ├── ColumnHeader.java │ │ ├── ICellCLickListener.java │ │ ├── RowHeader.java │ │ ├── TableViewAdapter.java │ │ ├── TableViewListener.java │ │ ├── TableViewModel.java │ │ ├── holder │ │ ├── CellViewHolder.java │ │ ├── ColumnHeaderViewHolder.java │ │ └── RowHeaderViewHolder.java │ │ └── popup │ │ ├── ColumnHeaderLongPressPopup.java │ │ └── RowHeaderLongPressPopup.java │ ├── api │ ├── DrawItem.java │ ├── EditEventListener.java │ ├── EditStyle.java │ ├── IChooseColorResult.java │ ├── IChooseLayerResult.java │ ├── IControl.java │ ├── IFormControl.java │ ├── ILayerSelector.java │ ├── ILayerUI.java │ ├── ISelectResourceDialog.java │ ├── ISimpleControl.java │ ├── IVectorLayerUI.java │ ├── MapViewEventListener.java │ ├── Overlay.java │ ├── OverlayItem.java │ └── VertexStyle.java │ ├── control │ ├── AliasList.java │ ├── DateTime.java │ ├── GreyLine.java │ ├── PhotoGallery.java │ ├── TextEdit.java │ └── TextLabel.java │ ├── dialog │ ├── ChooseColorDialog.java │ ├── ChooseColorListAdapter.java │ ├── ChooseLayerDialog.java │ ├── ChooseLayerListAdapter.java │ ├── CreateFromQMSLayerDialog.java │ ├── CreateLocalLayerDialog.java │ ├── CreateRemoteTMSLayerDialog.java │ ├── LocalResourceSelectDialog.java │ ├── NGDialog.java │ ├── NGWResourcesListAdapter.java │ ├── SelectNGWResourceDialog.java │ ├── SelectZoomLevelsDialog.java │ └── StyledDialogFragment.java │ ├── display │ ├── RendererUI.java │ ├── RuleFeatureRendererUI.java │ └── SimpleFeatureRendererUI.java │ ├── formcontrol │ ├── AutoTextEdit.java │ ├── Averaging.java │ ├── Checkbox.java │ ├── Combobox.java │ ├── Coordinates.java │ ├── Counter.java │ ├── DateTime.java │ ├── Distance.java │ ├── DoubleCombobox.java │ ├── DoubleComboboxValue.java │ ├── RadioGroup.java │ ├── Sign.java │ ├── Space.java │ ├── SplitCombobox.java │ ├── TabFragment.java │ ├── Tabs.java │ ├── TextEdit.java │ └── TextLabel.java │ ├── fragment │ ├── BottomToolbar.java │ ├── CompassFragment.java │ ├── LayerFillProgressDialogFragment.java │ ├── LayerGeneralSettingsFragment.java │ ├── LayersListAdapter.java │ ├── NGIDLoginFragment.java │ ├── NGIDSettingsFragment.java │ ├── NGIDSettingsHeaderFragment.java │ ├── NGPreferenceFragment.java │ ├── NGPreferenceHeaderFragment.java │ ├── NGPreferenceSettingsFragment.java │ ├── NGWLoginFragment.java │ ├── NGWSettingsFragment.java │ ├── NGWSettingsHeaderFragment.java │ ├── ReorderedLayerView.java │ └── StyleFragment.java │ ├── mapui │ ├── LayerFactoryUI.java │ ├── LayerGroupUI.java │ ├── LocalTMSLayerUI.java │ ├── MapView.java │ ├── MapViewBase.java │ ├── MapViewOverlays.java │ ├── NGWRasterLayerUI.java │ ├── NGWVectorLayerUI.java │ ├── NGWWebMapLayerUI.java │ ├── RemoteTMSLayerUI.java │ ├── TrackLayerUI.java │ ├── TrackWorker.java │ └── VectorLayerUI.java │ ├── overlay │ ├── CurrentLocationOverlay.java │ ├── CurrentTrackOverlay.java │ ├── EditLayerOverlay.java │ ├── RulerOverlay.java │ └── UndoRedoOverlay.java │ ├── service │ ├── BootLoader.java │ ├── HTTPLoader.java │ ├── LayerFillService.java │ ├── RebuildCacheService.java │ ├── RebuildCacheWorker.java │ ├── RebuildCacheWorkerKT.kt │ ├── TileDownloadService.java │ ├── TrackerReceiver.java │ ├── TrackerService.java │ └── WalkEditService.java │ └── util │ ├── BubbleSurfaceView.java │ ├── CheckDirSizeTask.java │ ├── CheckState.java │ ├── ClearCacheTask.java │ ├── CompassImage.java │ ├── ConstantsUI.java │ ├── ControlHelper.java │ ├── ExportGPXTask.java │ ├── ExportGeoJSONBatchTask.java │ ├── ExportGeoJSONTask.java │ ├── LayerUtil.java │ ├── MatrixTableAdapter.java │ ├── NGIDUtils.java │ ├── NGWCreateNewResourceTask.java │ ├── NotificationHelper.java │ ├── SettingsConstantsUI.java │ ├── TrackView.java │ └── UiUtil.java └── res ├── color ├── control_disabled_dark.xml ├── control_disabled_light.xml ├── dark_button.xml ├── light_button.xml ├── sdf_button_text_color_dark.xml └── sdf_button_text_color_light.xml ├── drawable-hdpi-v11 ├── ic_notification_download.png └── ic_notification_rebuild_cache.png ├── drawable-hdpi-v9 └── ic_notification_download.png ├── drawable-hdpi ├── ic_accuracy.png ├── ic_action_add_hole.png ├── ic_action_add_line.png ├── ic_action_add_multiline.png ├── ic_action_add_multipolygon.png ├── ic_action_add_point.png ├── ic_action_add_points.png ├── ic_action_add_polygon.png ├── ic_action_anchor.png ├── ic_action_apply_dark.png ├── ic_action_apply_light.png ├── ic_action_attributes.png ├── ic_action_av_skip_next.png ├── ic_action_av_skip_previous.png ├── ic_action_cancel_dark.png ├── ic_action_cancel_light.png ├── ic_action_content_copy.png ├── ic_action_content_cut.png ├── ic_action_content_paste.png ├── ic_action_content_select_all_dark.png ├── ic_action_content_select_all_light.png ├── ic_action_delete_alpha.png ├── ic_action_delete_dark.png ├── ic_action_delete_hole.png ├── ic_action_delete_light.png ├── ic_action_delete_line.png ├── ic_action_delete_multiline.png ├── ic_action_delete_multipolygon.png ├── ic_action_delete_point.png ├── ic_action_delete_points.png ├── ic_action_delete_polygon.png ├── ic_action_edit_dark.png ├── ic_action_edit_light.png ├── ic_action_home_light.png ├── ic_action_information_light.png ├── ic_action_maps_directions_walk.png ├── ic_action_maps_directions_walk_rec.png ├── ic_action_move_point_to_center.png ├── ic_action_move_point_to_location.png ├── ic_action_redo_dark.png ├── ic_action_refresh_dark.png ├── ic_action_refresh_light.png ├── ic_action_save.png ├── ic_action_search.png ├── ic_action_settings.png ├── ic_action_settings_dark.png ├── ic_action_social_share_dark.png ├── ic_action_social_share_light.png ├── ic_action_touch.png ├── ic_action_undo_dark.png ├── ic_action_visibility_off_dark.png ├── ic_action_visibility_off_light.png ├── ic_action_visibility_on_dark.png ├── ic_action_visibility_on_light.png ├── ic_action_warning_dark.png ├── ic_action_warning_light.png ├── ic_add_account.png ├── ic_add_photo.png ├── ic_altitude.png ├── ic_clear_dark.png ├── ic_clear_light.png ├── ic_collector_icon.png ├── ic_color_lens_dark.png ├── ic_create_new_folder_white_24dp.png ├── ic_folder.png ├── ic_formbuilder.png ├── ic_geojson.png ├── ic_launcher.png ├── ic_location.png ├── ic_lock_black_24dp.png ├── ic_menu_moreoverflow_dark.png ├── ic_menu_moreoverflow_light.png ├── ic_minus.png ├── ic_next_dark.png ├── ic_next_light.png ├── ic_ngw.png ├── ic_ngw_folder.png ├── ic_ngw_webmap.png ├── ic_ngw_wms_client.png ├── ic_notification_download.png ├── ic_notification_rebuild_cache.png ├── ic_pg_vector.png ├── ic_plus.png ├── ic_raster.png ├── ic_signal_wifi.png ├── ic_speed.png ├── ic_spinner_calendar_dark.9.png ├── ic_spinner_calendar_light.9.png ├── ic_track_dark.png ├── ic_track_flag.png ├── ic_track_light.png ├── ic_type_line.png ├── ic_type_multiline.png ├── ic_type_multipoint.png ├── ic_type_multipolygon.png ├── ic_type_point.png ├── ic_type_polygon.png ├── ic_vector.png └── ic_zip.png ├── drawable-mdpi-v11 ├── ic_notification_download.png └── ic_notification_rebuild_cache.png ├── drawable-mdpi-v9 └── ic_notification_download.png ├── drawable-mdpi ├── ic_accuracy.png ├── ic_action_add_hole.png ├── ic_action_add_line.png ├── ic_action_add_multiline.png ├── ic_action_add_multipolygon.png ├── ic_action_add_point.png ├── ic_action_add_points.png ├── ic_action_add_polygon.png ├── ic_action_anchor.png ├── ic_action_apply_dark.png ├── ic_action_apply_light.png ├── ic_action_attributes.png ├── ic_action_av_skip_next.png ├── ic_action_av_skip_previous.png ├── ic_action_cancel_dark.png ├── ic_action_cancel_light.png ├── ic_action_content_copy.png ├── ic_action_content_cut.png ├── ic_action_content_paste.png ├── ic_action_content_select_all_dark.png ├── ic_action_content_select_all_light.png ├── ic_action_delete_alpha.png ├── ic_action_delete_dark.png ├── ic_action_delete_hole.png ├── ic_action_delete_light.png ├── ic_action_delete_line.png ├── ic_action_delete_multiline.png ├── ic_action_delete_multipolygon.png ├── ic_action_delete_point.png ├── ic_action_delete_points.png ├── ic_action_delete_polygon.png ├── ic_action_edit_dark.png ├── ic_action_edit_light.png ├── ic_action_home_light.png ├── ic_action_information_light.png ├── ic_action_maps_directions_walk.png ├── ic_action_maps_directions_walk_rec.png ├── ic_action_move_point_to_center.png ├── ic_action_move_point_to_location.png ├── ic_action_redo_dark.png ├── ic_action_refresh_dark.png ├── ic_action_refresh_light.png ├── ic_action_save.png ├── ic_action_search.png ├── ic_action_settings.png ├── ic_action_settings_dark.png ├── ic_action_social_share_dark.png ├── ic_action_social_share_light.png ├── ic_action_touch.png ├── ic_action_undo_dark.png ├── ic_action_visibility_off_dark.png ├── ic_action_visibility_off_light.png ├── ic_action_visibility_on_dark.png ├── ic_action_visibility_on_light.png ├── ic_action_warning_dark.png ├── ic_action_warning_light.png ├── ic_add_account.png ├── ic_add_photo.png ├── ic_altitude.png ├── ic_clear_dark.png ├── ic_clear_light.png ├── ic_collector_icon.png ├── ic_color_lens_dark.png ├── ic_create_new_folder_white_24dp.png ├── ic_folder.png ├── ic_formbuilder.png ├── ic_geojson.png ├── ic_launcher.png ├── ic_location.png ├── ic_lock_black_24dp.png ├── ic_menu_moreoverflow_dark.png ├── ic_menu_moreoverflow_light.png ├── ic_minus.png ├── ic_next_dark.png ├── ic_next_light.png ├── ic_ngw.png ├── ic_ngw_folder.png ├── ic_ngw_webmap.png ├── ic_ngw_wms_client.png ├── ic_notification_download.png ├── ic_notification_rebuild_cache.png ├── ic_pg_vector.png ├── ic_plus.png ├── ic_raster.png ├── ic_signal_wifi.png ├── ic_speed.png ├── ic_spinner_calendar_dark.9.png ├── ic_spinner_calendar_light.9.png ├── ic_track_dark.png ├── ic_track_flag.png ├── ic_track_light.png ├── ic_type_line.png ├── ic_type_multiline.png ├── ic_type_multipoint.png ├── ic_type_multipolygon.png ├── ic_type_point.png ├── ic_type_polygon.png ├── ic_vector.png └── ic_zip.png ├── drawable-xhdpi-v11 ├── ic_notification_download.png └── ic_notification_rebuild_cache.png ├── drawable-xhdpi-v9 └── ic_notification_download.png ├── drawable-xhdpi ├── ic_accuracy.png ├── ic_action_add_hole.png ├── ic_action_add_line.png ├── ic_action_add_multiline.png ├── ic_action_add_multipolygon.png ├── ic_action_add_point.png ├── ic_action_add_points.png ├── ic_action_add_polygon.png ├── ic_action_anchor.png ├── ic_action_apply_dark.png ├── ic_action_apply_light.png ├── ic_action_attributes.png ├── ic_action_av_skip_next.png ├── ic_action_av_skip_previous.png ├── ic_action_cancel_dark.png ├── ic_action_cancel_light.png ├── ic_action_content_copy.png ├── ic_action_content_cut.png ├── ic_action_content_paste.png ├── ic_action_content_select_all_dark.png ├── ic_action_content_select_all_light.png ├── ic_action_delete_alpha.png ├── ic_action_delete_dark.png ├── ic_action_delete_hole.png ├── ic_action_delete_light.png ├── ic_action_delete_line.png ├── ic_action_delete_multiline.png ├── ic_action_delete_multipolygon.png ├── ic_action_delete_point.png ├── ic_action_delete_points.png ├── ic_action_delete_polygon.png ├── ic_action_edit_dark.png ├── ic_action_edit_light.png ├── ic_action_home_light.png ├── ic_action_information_light.png ├── ic_action_maps_directions_walk.png ├── ic_action_maps_directions_walk_rec.png ├── ic_action_move_point_to_center.png ├── ic_action_move_point_to_location.png ├── ic_action_redo_dark.png ├── ic_action_refresh_dark.png ├── ic_action_refresh_light.png ├── ic_action_save.png ├── ic_action_search.png ├── ic_action_settings.png ├── ic_action_settings_dark.png ├── ic_action_social_share_dark.png ├── ic_action_social_share_light.png ├── ic_action_touch.png ├── ic_action_undo_dark.png ├── ic_action_visibility_off_dark.png ├── ic_action_visibility_off_light.png ├── ic_action_visibility_on_dark.png ├── ic_action_visibility_on_light.png ├── ic_action_warning_dark.png ├── ic_action_warning_light.png ├── ic_add_account.png ├── ic_add_photo.png ├── ic_altitude.png ├── ic_clear_dark.png ├── ic_clear_light.png ├── ic_collector_icon.png ├── ic_color_lens_dark.png ├── ic_create_new_folder_white_24dp.png ├── ic_folder.png ├── ic_formbuilder.png ├── ic_geojson.png ├── ic_launcher.png ├── ic_location.png ├── ic_lock_black_24dp.png ├── ic_menu_moreoverflow_dark.png ├── ic_menu_moreoverflow_light.png ├── ic_minus.png ├── ic_next_dark.png ├── ic_next_light.png ├── ic_ngw.png ├── ic_ngw_folder.png ├── ic_ngw_webmap.png ├── ic_ngw_wms_client.png ├── ic_notification_download.png ├── ic_notification_rebuild_cache.png ├── ic_pg_vector.png ├── ic_plus.png ├── ic_raster.png ├── ic_signal_wifi.png ├── ic_speed.png ├── ic_spinner_calendar_dark.9.png ├── ic_spinner_calendar_light.9.png ├── ic_track_dark.png ├── ic_track_flag.png ├── ic_track_light.png ├── ic_type_line.png ├── ic_type_multiline.png ├── ic_type_multipoint.png ├── ic_type_multipolygon.png ├── ic_type_point.png ├── ic_type_polygon.png ├── ic_vector.png └── ic_zip.png ├── drawable-xxhdpi-v11 ├── ic_notification_download.png └── ic_notification_rebuild_cache.png ├── drawable-xxhdpi-v9 └── ic_notification_download.png ├── drawable-xxhdpi ├── ic_accuracy.png ├── ic_action_add_hole.png ├── ic_action_add_line.png ├── ic_action_add_multiline.png ├── ic_action_add_multipolygon.png ├── ic_action_add_point.png ├── ic_action_add_points.png ├── ic_action_add_polygon.png ├── ic_action_anchor.png ├── ic_action_apply_dark.png ├── ic_action_apply_light.png ├── ic_action_attributes.png ├── ic_action_av_skip_next.png ├── ic_action_av_skip_previous.png ├── ic_action_cancel_dark.png ├── ic_action_cancel_light.png ├── ic_action_content_copy.png ├── ic_action_content_cut.png ├── ic_action_content_paste.png ├── ic_action_content_select_all_dark.png ├── ic_action_content_select_all_light.png ├── ic_action_delete_alpha.png ├── ic_action_delete_dark.png ├── ic_action_delete_hole.png ├── ic_action_delete_light.png ├── ic_action_delete_line.png ├── ic_action_delete_multiline.png ├── ic_action_delete_multipolygon.png ├── ic_action_delete_point.png ├── ic_action_delete_points.png ├── ic_action_delete_polygon.png ├── ic_action_edit_dark.png ├── ic_action_edit_light.png ├── ic_action_home_light.png ├── ic_action_information_light.png ├── ic_action_maps_directions_walk.png ├── ic_action_maps_directions_walk_rec.png ├── ic_action_move_point_to_center.png ├── ic_action_move_point_to_location.png ├── ic_action_redo_dark.png ├── ic_action_refresh_dark.png ├── ic_action_refresh_light.png ├── ic_action_save.png ├── ic_action_search.png ├── ic_action_settings.png ├── ic_action_settings_dark.png ├── ic_action_social_share_dark.png ├── ic_action_social_share_light.png ├── ic_action_touch.png ├── ic_action_undo_dark.png ├── ic_action_visibility_off_dark.png ├── ic_action_visibility_off_light.png ├── ic_action_visibility_on_dark.png ├── ic_action_visibility_on_light.png ├── ic_action_warning_dark.png ├── ic_action_warning_light.png ├── ic_add_account.png ├── ic_add_photo.png ├── ic_altitude.png ├── ic_clear_dark.png ├── ic_clear_light.png ├── ic_collector_icon.png ├── ic_color_lens_dark.png ├── ic_create_new_folder_white_24dp.png ├── ic_folder.png ├── ic_formbuilder.png ├── ic_geojson.png ├── ic_launcher.png ├── ic_location.png ├── ic_lock_black_24dp.png ├── ic_menu_moreoverflow_dark.png ├── ic_menu_moreoverflow_light.png ├── ic_minus.png ├── ic_next_dark.png ├── ic_next_light.png ├── ic_ngw.png ├── ic_ngw_folder.png ├── ic_ngw_webmap.png ├── ic_ngw_wms_client.png ├── ic_notification_download.png ├── ic_notification_rebuild_cache.png ├── ic_pg_vector.png ├── ic_plus.png ├── ic_raster.png ├── ic_signal_wifi.png ├── ic_speed.png ├── ic_spinner_calendar_dark.9.png ├── ic_spinner_calendar_light.9.png ├── ic_track_dark.png ├── ic_track_flag.png ├── ic_track_light.png ├── ic_type_line.png ├── ic_type_multiline.png ├── ic_type_multipoint.png ├── ic_type_multipolygon.png ├── ic_type_point.png ├── ic_type_polygon.png ├── ic_vector.png └── ic_zip.png ├── drawable-xxxhdpi-v11 └── ic_notification_rebuild_cache.png ├── drawable-xxxhdpi ├── ic_action_content_select_all_dark.png ├── ic_action_content_select_all_light.png ├── ic_action_delete_dark.png ├── ic_action_delete_light.png ├── ic_action_edit_dark.png ├── ic_action_maps_directions_walk_rec.png ├── ic_action_redo_dark.png ├── ic_action_search.png ├── ic_action_touch.png ├── ic_action_undo_dark.png ├── ic_action_visibility_off_dark.png ├── ic_action_visibility_off_light.png ├── ic_action_visibility_on_dark.png ├── ic_action_visibility_on_light.png ├── ic_action_warning_dark.png ├── ic_add_photo.png ├── ic_clear_dark.png ├── ic_clear_light.png ├── ic_collector_icon.png ├── ic_color_lens_dark.png ├── ic_create_new_folder_white_24dp.png ├── ic_launcher.png ├── ic_lock_black_24dp.png ├── ic_menu_moreoverflow_dark.png ├── ic_menu_moreoverflow_light.png ├── ic_next_dark.png ├── ic_ngw_folder.png ├── ic_ngw_webmap.png ├── ic_ngw_wms_client.png ├── ic_notification_rebuild_cache.png ├── ic_pg_vector.png ├── ic_raster.png ├── ic_track_dark.png ├── ic_track_flag.png ├── ic_track_light.png ├── ic_type_line.png ├── ic_type_multiline.png ├── ic_type_multipoint.png ├── ic_type_multipolygon.png ├── ic_type_point.png ├── ic_type_polygon.png └── ic_vector.png ├── drawable ├── action_mode.xml ├── ball.png ├── bk_tile.png ├── bk_tile_dark.png ├── bk_tile_light.png ├── blue_rounded_button.xml ├── bubble_circle.png ├── bubble_circle_green.png ├── bubble_circle_red.png ├── color_ring.xml ├── dark_button.xml ├── fab_label_background.xml ├── gray_rounded_button.xml ├── ic_clear.xml ├── ic_database_export.xml ├── ic_down.xml ├── ic_up.xml ├── light_button.xml ├── list_item_divider.xml ├── nextgis_addition.png ├── ngm_logo.png ├── ngm_logo_shadow.png ├── rounded_button.xml ├── sdf_background_dark.xml ├── sdf_background_light.xml ├── sdf_button_background_dark.xml ├── sdf_button_background_dark_disable.xml ├── sdf_button_background_dark_normal.xml ├── sdf_button_background_dark_pressed.xml ├── sdf_button_background_light.xml ├── sdf_button_background_light_disable.xml ├── sdf_button_background_light_normal.xml ├── sdf_button_background_light_pressed.xml ├── sdf_title_background_dark.xml ├── sdf_title_background_light.xml ├── sign_border.xml └── white_rounded_button.xml ├── layout-land └── fragment_ngid_login.xml ├── layout-xlarge └── activity_settings.xml ├── layout ├── actionbar.xml ├── activity_attributes.xml ├── activity_layer_settings.xml ├── activity_ngid_login.xml ├── activity_ngw_login.xml ├── activity_resources.xml ├── activity_settings.xml ├── activity_standard_attributes.xml ├── activity_tracks.xml ├── bottombar.xml ├── custom_dialog.xml ├── custom_ngid_server.xml ├── dialog_create_local_tms.xml ├── dialog_create_tms.xml ├── dialog_create_vector_layer.xml ├── dialog_datetimepicker.xml ├── dialog_edittext.xml ├── dialog_local_resource.xml ├── dialog_progress_accurate_location.xml ├── dialog_select_zoom_levels.xml ├── formtemplate_autoedittext.xml ├── formtemplate_averaging.xml ├── formtemplate_checkbox.xml ├── formtemplate_combobox.xml ├── formtemplate_coordinates.xml ├── formtemplate_counter.xml ├── formtemplate_datetime.xml ├── formtemplate_distance.xml ├── formtemplate_double_spinner.xml ├── formtemplate_doublecombobox.xml ├── formtemplate_edittext.xml ├── formtemplate_photo.xml ├── formtemplate_photo_disabled.xml ├── formtemplate_radiogroup.xml ├── formtemplate_sign.xml ├── formtemplate_space.xml ├── formtemplate_spinner.xml ├── formtemplate_tabs.xml ├── formtemplate_textlabel.xml ├── fragment_compass.xml ├── fragment_layer_general.xml ├── fragment_location_panel.xml ├── fragment_ngid_login.xml ├── fragment_ngw_login.xml ├── fragment_ngw_vector_layer_sync.xml ├── fragment_raster_layer_cache.xml ├── fragment_raster_layer_style.xml ├── fragment_vector_layer_cache.xml ├── fragment_vector_layer_fields.xml ├── fragment_vector_layer_style.xml ├── item_local_resource.xml ├── item_path_icon.xml ├── item_path_name.xml ├── item_qms_layer.xml ├── item_selector_adapter.xml ├── layout_layers.xml ├── layout_resources.xml ├── list_content.xml ├── row_color.xml ├── row_empty.xml ├── row_layer.xml ├── row_loading.xml ├── row_ngwlayer_check.xml ├── row_ngwlayer_doublecheck.xml ├── row_ngwlayer_triplecheck.xml ├── row_resource_check.xml ├── row_resource_radio.xml ├── row_resourcegroup.xml ├── row_select_layer.xml ├── row_track.xml ├── rule_item.xml ├── sdf_layout.xml ├── sdf_message.xml ├── spinner_datepicker.xml ├── style_line.xml ├── style_marker.xml ├── style_polygon.xml ├── style_rules.xml ├── style_text.xml ├── table_select_row.xml ├── table_view_cell_layout.xml ├── table_view_column_header_layout.xml ├── table_view_corner_layout.xml ├── table_view_image_cell_layout.xml ├── table_view_row_header_layout.xml ├── template_datetime.xml ├── template_textedit.xml └── template_textlabel.xml ├── menu ├── action_tracks.xml ├── attributes_table.xml ├── edit_attributes.xml ├── edit_by_walk.xml ├── edit_geometry.xml ├── edit_line.xml ├── edit_multiline.xml ├── edit_multipoint.xml ├── edit_multipolygon.xml ├── edit_point.xml ├── edit_polygon.xml ├── layer_popup.xml ├── menu_tracks.xml ├── ngw_resource.xml └── search_menu.xml ├── mipmap-hdpi └── ic_collector.png ├── mipmap-mdpi └── ic_collector.png ├── mipmap-xhdpi └── ic_collector.png ├── mipmap-xxhdpi └── ic_collector.png ├── mipmap-xxxhdpi └── ic_collector.png ├── raw └── beep.mp3 ├── values-cs ├── arrays.xml └── strings.xml ├── values-de ├── arrays.xml └── strings.xml ├── values-fr ├── arrays.xml └── strings.xml ├── values-hi ├── arrays.xml └── strings.xml ├── values-ja ├── arrays.xml └── strings.xml ├── values-pt-rBR ├── arrays.xml └── strings.xml ├── values-ru ├── arrays.xml └── strings.xml ├── values-tg ├── arrays.xml └── strings.xml ├── values-uk ├── arrays.xml └── strings.xml ├── values-v22 └── styles.xml ├── values-v23 └── styles.xml ├── values ├── arrays.xml ├── colors.xml ├── dimens.xml ├── loaders.xml ├── strings.xml └── styles.xml └── xml ├── authenticator.xml ├── preferences_ngid.xml ├── provider_paths.xml └── searchable.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # Android studio 2 | .idea/ 3 | .gradle/ 4 | build/ 5 | local.properties 6 | captures/ 7 | *.iml 8 | *.iws 9 | *.ipr 10 | 11 | # OSX files 12 | .DS_Store 13 | 14 | # Temp files 15 | *~ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | android_maplibui 2 | ================ 3 | 4 | The user interface controls library for Android geo applications 5 | 6 | 7 | License 8 | ------- 9 | This library is licensed under GNU LGPL v3 or any later version 10 | 11 | 12 | Commercial support 13 | ---------- 14 | Need to fix a bug or add a feature to android_maplibui (NextGIS part of Mobile)? We provide custom development and support for this software. [Contact us](http://nextgis.ru/en/contact/) to discuss options! 15 | 16 | [![http://nextgis.com](http://nextgis.ru/img/nextgis.png)](http://nextgis.com) 17 | -------------------------------------------------------------------------------- /proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /opt/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /src/main/assets/compass_baseplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/assets/compass_baseplate.png -------------------------------------------------------------------------------- /src/main/assets/compass_bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/assets/compass_bezel.png -------------------------------------------------------------------------------- /src/main/assets/compass_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/assets/compass_needle.png -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/adapter/attributes/ICellCLickListener.java: -------------------------------------------------------------------------------- 1 | package com.nextgis.maplibui.adapter.attributes; 2 | 3 | import android.view.View; 4 | 5 | public interface ICellCLickListener { 6 | void onCellClick(View v, int row); 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/api/IChooseColorResult.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * Author: NikitaFeodonit, nfeodonit@yandex.com 6 | * Author: Stanislav Petriakov, becomeglory@gmail.com 7 | * ***************************************************************************** 8 | * Copyright (c) 2012-2015. NextGIS, info@nextgis.com 9 | * 10 | * This program is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser Public License as published by 12 | * the Free Software Foundation, either version 3 of the License, or 13 | * (at your option) any later version. 14 | * 15 | * This program is distributed in the hope that it will be useful, 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | * GNU Lesser Public License for more details. 19 | * 20 | * You should have received a copy of the GNU Lesser Public License 21 | * along with this program. If not, see . 22 | */ 23 | 24 | package com.nextgis.maplibui.api; 25 | 26 | /** 27 | * The activity should implement this interface to get results from Choose color dialog 28 | */ 29 | public interface IChooseColorResult 30 | { 31 | void onFinishChooseColorDialog(int color); 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/api/IChooseLayerResult.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * Author: NikitaFeodonit, nfeodonit@yandex.com 6 | * Author: Stanislav Petriakov, becomeglory@gmail.com 7 | * ***************************************************************************** 8 | * Copyright (c) 2012-2015. NextGIS, info@nextgis.com 9 | * 10 | * This program is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser Public License as published by 12 | * the Free Software Foundation, either version 3 of the License, or 13 | * (at your option) any later version. 14 | * 15 | * This program is distributed in the hope that it will be useful, 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | * GNU Lesser Public License for more details. 19 | * 20 | * You should have received a copy of the GNU Lesser Public License 21 | * along with this program. If not, see . 22 | */ 23 | 24 | package com.nextgis.maplibui.api; 25 | 26 | import com.nextgis.maplib.api.ILayer; 27 | 28 | 29 | /** 30 | * The activity should implement this interface to get results from Choose layer dialog 31 | */ 32 | public interface IChooseLayerResult 33 | { 34 | void onFinishChooseLayerDialog( 35 | int code, 36 | ILayer layer); 37 | } 38 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/api/ISelectResourceDialog.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * Author: NikitaFeodonit, nfeodonit@yandex.com 6 | * Author: Stanislav Petriakov, becomeglory@gmail.com 7 | * ***************************************************************************** 8 | * Copyright (c) 2012-2015. NextGIS, info@nextgis.com 9 | * 10 | * This program is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser Public License as published by 12 | * the Free Software Foundation, either version 3 of the License, or 13 | * (at your option) any later version. 14 | * 15 | * This program is distributed in the hope that it will be useful, 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | * GNU Lesser Public License for more details. 19 | * 20 | * You should have received a copy of the GNU Lesser Public License 21 | * along with this program. If not, see . 22 | */ 23 | 24 | package com.nextgis.maplibui.api; 25 | 26 | import android.content.Context; 27 | 28 | 29 | /** 30 | * Interface for select resources dialogs 31 | */ 32 | public interface ISelectResourceDialog 33 | { 34 | Context getContext(); 35 | 36 | void updateButtons(); 37 | } 38 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/api/ISimpleControl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * ***************************************************************************** 6 | * Copyright (c) 2012-2015. NextGIS, info@nextgis.com 7 | * 8 | * This program is free software: you can redistribute it and/or modify 9 | * it under the terms of the GNU Lesser General Public License as published by 10 | * the Free Software Foundation, either version 3 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * This program is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU Lesser Public License for more details. 17 | * 18 | * You should have received a copy of the GNU Lesser General Public License 19 | * along with this program. If not, see . 20 | */ 21 | 22 | package com.nextgis.maplibui.api; 23 | 24 | import android.database.Cursor; 25 | import android.os.Bundle; 26 | 27 | import com.nextgis.maplib.datasource.Field; 28 | 29 | /** 30 | * Controls for standard form 31 | */ 32 | public interface ISimpleControl extends IControl { 33 | 34 | void init(Field field, Bundle savedState, Cursor featureCursor); 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/control/AliasList.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * Author: NikitaFeodonit, nfeodonit@yandex.com 6 | * Author: Stanislav Petriakov, becomeglory@gmail.com 7 | * ***************************************************************************** 8 | * Copyright (c) 2012-2015. NextGIS, info@nextgis.com 9 | * 10 | * This program is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser Public License as published by 12 | * the Free Software Foundation, either version 3 of the License, or 13 | * (at your option) any later version. 14 | * 15 | * This program is distributed in the hope that it will be useful, 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | * GNU Lesser Public License for more details. 19 | * 20 | * You should have received a copy of the GNU Lesser Public License 21 | * along with this program. If not, see . 22 | */ 23 | 24 | package com.nextgis.maplibui.control; 25 | 26 | import java.util.ArrayList; 27 | import java.util.List; 28 | 29 | 30 | public class AliasList 31 | { 32 | public List aliasList = new ArrayList<>(); 33 | public int defaultPosition = 0; 34 | } 35 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/fragment/NGPreferenceHeaderFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: NextGIS Mobile 3 | * Purpose: Mobile GIS for Android. 4 | * Author: Dmitry Baryshnikov (aka Bishop), bishop.dev@gmail.com 5 | * Author: NikitaFeodonit, nfeodonit@yandex.com 6 | * Author: Stanislav Petriakov, becomeglory@gmail.com 7 | * ***************************************************************************** 8 | * Copyright (c) 2012-2017 NextGIS, info@nextgis.com 9 | * 10 | * This program is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser Public License as published by 12 | * the Free Software Foundation, either version 3 of the License, or 13 | * (at your option) any later version. 14 | * 15 | * This program is distributed in the hope that it will be useful, 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | * GNU Lesser Public License for more details. 19 | * 20 | * You should have received a copy of the GNU Lesser Public License 21 | * along with this program. If not, see . 22 | */ 23 | 24 | package com.nextgis.maplibui.fragment; 25 | 26 | 27 | public abstract class NGPreferenceHeaderFragment 28 | extends NGPreferenceFragment 29 | { 30 | } 31 | -------------------------------------------------------------------------------- /src/main/java/com/nextgis/maplibui/service/TrackerReceiver.java: -------------------------------------------------------------------------------- 1 | package com.nextgis.maplibui.service; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.util.Log; 7 | 8 | import com.nextgis.maplibui.util.ConstantsUI; 9 | 10 | public class TrackerReceiver extends BroadcastReceiver { 11 | @Override 12 | public void onReceive(Context context, Intent intent) { 13 | if ("com.example.ACTION_TRACKER_MESSAGE".equals(intent.getAction())) { 14 | String message = intent.getStringExtra(ConstantsUI.KEY_MESSAGE); 15 | // Передай в Activity через LiveData, EventBus, или напрямую 16 | Log.e("TrackerReceiver", "Got message: " + message); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/res/color/control_disabled_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/res/color/control_disabled_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/res/color/dark_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/res/color/light_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi-v11/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi-v11/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi-v11/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi-v11/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi-v9/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi-v9/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_accuracy.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_add_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_add_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_anchor.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_apply_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_apply_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_apply_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_apply_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_attributes.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_av_skip_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_av_skip_next.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_av_skip_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_av_skip_previous.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_cancel_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_cancel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_cancel_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_content_copy.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_content_cut.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_content_paste.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_content_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_content_select_all_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_content_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_content_select_all_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_alpha.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_delete_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_delete_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_edit_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_edit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_edit_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_home_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_information_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_information_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_maps_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_maps_directions_walk.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_maps_directions_walk_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_maps_directions_walk_rec.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_move_point_to_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_move_point_to_center.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_move_point_to_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_move_point_to_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_redo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_redo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_refresh_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_refresh_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_save.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_settings_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_social_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_social_share_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_social_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_social_share_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_touch.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_undo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_undo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_visibility_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_visibility_off_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_visibility_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_visibility_off_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_visibility_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_visibility_on_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_visibility_on_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_visibility_on_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_warning_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_warning_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_action_warning_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_action_warning_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_add_account.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_add_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_add_photo.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_altitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_altitude.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_clear_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_clear_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_clear_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_collector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_collector_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_color_lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_color_lens_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_create_new_folder_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_create_new_folder_white_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_formbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_formbuilder.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_geojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_geojson.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_menu_moreoverflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_menu_moreoverflow_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_menu_moreoverflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_menu_moreoverflow_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_minus.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_next_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_next_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_next_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_ngw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_ngw.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_ngw_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_ngw_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_ngw_webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_ngw_webmap.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_ngw_wms_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_ngw_wms_client.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_pg_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_pg_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_plus.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_raster.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_signal_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_signal_wifi.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_speed.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_spinner_calendar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_spinner_calendar_dark.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_spinner_calendar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_spinner_calendar_light.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_track_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_track_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_track_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_track_flag.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_track_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_track_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_multipoint.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_type_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_type_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-hdpi/ic_zip.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi-v11/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi-v11/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi-v11/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi-v11/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi-v9/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi-v9/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_accuracy.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_add_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_add_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_anchor.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_apply_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_apply_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_apply_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_apply_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_attributes.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_av_skip_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_av_skip_next.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_av_skip_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_av_skip_previous.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_cancel_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_cancel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_cancel_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_content_copy.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_content_cut.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_content_paste.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_content_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_content_select_all_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_content_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_content_select_all_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_alpha.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_delete_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_delete_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_edit_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_edit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_edit_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_home_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_information_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_information_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_maps_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_maps_directions_walk.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_maps_directions_walk_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_maps_directions_walk_rec.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_move_point_to_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_move_point_to_center.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_move_point_to_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_move_point_to_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_redo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_redo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_refresh_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_refresh_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_save.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_settings_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_social_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_social_share_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_social_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_social_share_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_touch.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_undo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_undo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_visibility_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_visibility_off_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_visibility_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_visibility_off_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_visibility_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_visibility_on_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_visibility_on_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_visibility_on_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_warning_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_warning_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_action_warning_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_action_warning_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_add_account.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_add_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_add_photo.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_altitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_altitude.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_clear_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_clear_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_clear_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_collector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_collector_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_color_lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_color_lens_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_create_new_folder_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_create_new_folder_white_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_formbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_formbuilder.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_geojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_geojson.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_menu_moreoverflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_menu_moreoverflow_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_menu_moreoverflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_menu_moreoverflow_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_minus.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_next_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_next_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_next_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_ngw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_ngw.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_ngw_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_ngw_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_ngw_webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_ngw_webmap.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_ngw_wms_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_ngw_wms_client.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_pg_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_pg_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_plus.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_raster.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_signal_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_signal_wifi.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_speed.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_spinner_calendar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_spinner_calendar_dark.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_spinner_calendar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_spinner_calendar_light.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_track_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_track_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_track_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_track_flag.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_track_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_track_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_multipoint.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_type_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_type_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-mdpi/ic_zip.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi-v11/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi-v11/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi-v11/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi-v11/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi-v9/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi-v9/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_accuracy.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_add_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_add_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_anchor.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_apply_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_apply_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_apply_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_apply_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_attributes.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_av_skip_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_av_skip_next.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_av_skip_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_av_skip_previous.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_cancel_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_cancel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_cancel_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_content_copy.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_content_cut.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_content_paste.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_content_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_content_select_all_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_content_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_content_select_all_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_alpha.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_delete_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_delete_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_edit_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_edit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_edit_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_home_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_information_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_information_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_maps_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_maps_directions_walk.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_maps_directions_walk_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_maps_directions_walk_rec.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_move_point_to_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_move_point_to_center.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_move_point_to_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_move_point_to_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_redo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_redo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_refresh_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_refresh_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_save.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_settings_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_social_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_social_share_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_social_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_social_share_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_touch.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_undo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_undo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_visibility_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_visibility_off_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_visibility_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_visibility_off_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_visibility_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_visibility_on_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_visibility_on_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_visibility_on_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_warning_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_warning_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_action_warning_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_action_warning_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_add_account.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_add_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_add_photo.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_altitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_altitude.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_clear_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_clear_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_clear_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_collector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_collector_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_color_lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_color_lens_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_create_new_folder_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_create_new_folder_white_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_formbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_formbuilder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_geojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_geojson.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_menu_moreoverflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_menu_moreoverflow_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_menu_moreoverflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_menu_moreoverflow_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_minus.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_next_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_next_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_next_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_ngw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_ngw.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_ngw_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_ngw_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_ngw_webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_ngw_webmap.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_ngw_wms_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_ngw_wms_client.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_pg_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_pg_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_plus.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_raster.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_signal_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_signal_wifi.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_speed.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_spinner_calendar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_spinner_calendar_dark.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_spinner_calendar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_spinner_calendar_light.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_track_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_track_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_track_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_track_flag.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_track_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_track_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_multipoint.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_type_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_type_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xhdpi/ic_zip.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi-v11/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi-v11/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi-v11/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi-v11/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi-v9/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi-v9/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_accuracy.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_add_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_add_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_anchor.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_apply_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_apply_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_apply_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_apply_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_attributes.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_av_skip_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_av_skip_next.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_av_skip_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_av_skip_previous.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_cancel_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_cancel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_cancel_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_content_copy.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_content_cut.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_content_paste.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_content_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_content_select_all_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_content_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_content_select_all_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_alpha.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_hole.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_points.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_delete_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_delete_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_edit_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_edit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_edit_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_home_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_information_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_information_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_maps_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_maps_directions_walk.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_maps_directions_walk_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_maps_directions_walk_rec.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_move_point_to_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_move_point_to_center.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_move_point_to_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_move_point_to_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_redo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_redo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_refresh_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_refresh_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_save.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_settings_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_social_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_social_share_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_social_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_social_share_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_touch.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_undo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_undo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_visibility_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_visibility_off_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_visibility_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_visibility_off_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_visibility_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_visibility_on_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_visibility_on_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_visibility_on_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_warning_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_warning_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_action_warning_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_action_warning_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_add_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_add_account.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_add_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_add_photo.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_altitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_altitude.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_clear_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_clear_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_clear_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_collector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_collector_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_color_lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_color_lens_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_create_new_folder_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_create_new_folder_white_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_formbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_formbuilder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_geojson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_geojson.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_location.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_menu_moreoverflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_menu_moreoverflow_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_menu_moreoverflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_menu_moreoverflow_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_minus.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_next_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_next_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_next_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_next_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_ngw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_ngw.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_ngw_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_ngw_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_ngw_webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_ngw_webmap.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_ngw_wms_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_ngw_wms_client.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_notification_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_notification_download.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_pg_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_pg_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_plus.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_raster.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_signal_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_signal_wifi.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_speed.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_spinner_calendar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_spinner_calendar_dark.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_spinner_calendar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_spinner_calendar_light.9.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_track_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_track_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_track_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_track_flag.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_track_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_track_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_multipoint.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_type_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_type_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxhdpi/ic_zip.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi-v11/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi-v11/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_content_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_content_select_all_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_content_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_content_select_all_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_delete_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_delete_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_edit_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_maps_directions_walk_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_maps_directions_walk_rec.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_redo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_redo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_touch.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_undo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_undo_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_visibility_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_visibility_off_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_visibility_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_visibility_off_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_visibility_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_visibility_on_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_visibility_on_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_visibility_on_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_action_warning_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_action_warning_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_add_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_add_photo.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_clear_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_clear_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_clear_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_collector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_collector_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_color_lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_color_lens_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_create_new_folder_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_create_new_folder_white_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_menu_moreoverflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_menu_moreoverflow_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_menu_moreoverflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_menu_moreoverflow_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_next_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_next_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_ngw_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_ngw_folder.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_ngw_webmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_ngw_webmap.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_ngw_wms_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_ngw_wms_client.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_notification_rebuild_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_notification_rebuild_cache.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_pg_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_pg_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_raster.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_track_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_track_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_track_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_track_flag.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_track_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_track_light.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_line.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_multiline.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_multipoint.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_multipolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_multipolygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_point.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_type_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_type_polygon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable-xxxhdpi/ic_vector.png -------------------------------------------------------------------------------- /src/main/res/drawable/action_mode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/res/drawable/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/ball.png -------------------------------------------------------------------------------- /src/main/res/drawable/bk_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bk_tile.png -------------------------------------------------------------------------------- /src/main/res/drawable/bk_tile_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bk_tile_dark.png -------------------------------------------------------------------------------- /src/main/res/drawable/bk_tile_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bk_tile_light.png -------------------------------------------------------------------------------- /src/main/res/drawable/blue_rounded_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/res/drawable/bubble_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bubble_circle.png -------------------------------------------------------------------------------- /src/main/res/drawable/bubble_circle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bubble_circle_green.png -------------------------------------------------------------------------------- /src/main/res/drawable/bubble_circle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/bubble_circle_red.png -------------------------------------------------------------------------------- /src/main/res/drawable/dark_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/res/drawable/fab_label_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 30 | 32 | 33 | -------------------------------------------------------------------------------- /src/main/res/drawable/gray_rounded_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/res/drawable/ic_clear.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/res/drawable/ic_database_export.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/res/drawable/light_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/res/drawable/nextgis_addition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/nextgis_addition.png -------------------------------------------------------------------------------- /src/main/res/drawable/ngm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/ngm_logo.png -------------------------------------------------------------------------------- /src/main/res/drawable/ngm_logo_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/drawable/ngm_logo_shadow.png -------------------------------------------------------------------------------- /src/main/res/drawable/rounded_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 27 | 30 | -------------------------------------------------------------------------------- /src/main/res/drawable/sdf_button_background_dark_disable.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 29 | 30 | 31 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /src/main/res/drawable/sdf_button_background_dark_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 28 | 29 | 30 | 31 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /src/main/res/drawable/sign_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 26 | 27 | 30 | -------------------------------------------------------------------------------- /src/main/res/drawable/white_rounded_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/res/layout/custom_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_combobox.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_coordinates.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_counter.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_doublecombobox.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_radiogroup.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_sign.xml: -------------------------------------------------------------------------------- 1 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_space.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/formtemplate_textlabel.xml: -------------------------------------------------------------------------------- 1 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/fragment_vector_layer_fields.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/row_empty.xml: -------------------------------------------------------------------------------- 1 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/res/layout/spinner_datepicker.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/res/layout/table_select_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/template_datetime.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/layout/template_textedit.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/res/layout/template_textlabel.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/res/menu/menu_tracks.xml: -------------------------------------------------------------------------------- 1 | 21 | 22 | 24 | 25 | 30 | -------------------------------------------------------------------------------- /src/main/res/menu/ngw_resource.xml: -------------------------------------------------------------------------------- 1 | 21 | 22 | 24 | 25 | 30 | -------------------------------------------------------------------------------- /src/main/res/menu/search_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 11 | -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/ic_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/mipmap-hdpi/ic_collector.png -------------------------------------------------------------------------------- /src/main/res/mipmap-mdpi/ic_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/mipmap-mdpi/ic_collector.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xhdpi/ic_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/mipmap-xhdpi/ic_collector.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xxhdpi/ic_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/mipmap-xxhdpi/ic_collector.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xxxhdpi/ic_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/mipmap-xxxhdpi/ic_collector.png -------------------------------------------------------------------------------- /src/main/res/raw/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgis/android_maplibui/74f1f833356eac1093f74dab7f84ea12f691b831/src/main/res/raw/beep.mp3 -------------------------------------------------------------------------------- /src/main/res/values-v22/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 28 | -------------------------------------------------------------------------------- /src/main/res/values-v23/styles.xml: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 |