Map Services Enhanced

An extension for analyzing, interrogating, and troubleshooting ArcGIS REST Services.

ما هو Map Services Enhanced؟

Map Services Enhanced هو إضافة Chrome تم تطويرها بواسطة Ken Doman، والميزة الرئيسية لها هي "An extension for analyzing, interrogating, and troubleshooting ArcGIS REST Services.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Map Services Enhanced

قم بتنزيل ملفات الامتداد Map Services Enhanced بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension works with ArcGIS Server REST pages to collect and present additional data related to the services you are seeing. You can search for relevant data, and find the corresponding map service. It also reviews data from links to services and 

What is ArcGIS Server? It is a product of ESRI that helps allows governments, businesses, and other organizations to publish maps and geospatial web services on the internet. These maps and services can be accessed by websites, mobile, and desktop applications, where users can view, query, and interact with the maps.

When publishing a map or service to ArcGIS Server, the server provides data about the service through HTML, JSON, and other data formats. ArcGIS Server also provides forms for developers to test specific REST Service requests. This extension gives the user more information on the HTML pages about the services, and modifies the forms to make them easier to use.

While ArcGIS Server provides metadata about the map services through HTML, you often have to visit each link and review lots of data before you find the information you're looking for. This extension collects the data behind relevant links, and presents it in a readable format.

Tool features:
* Display map service metadata in a readable format
* Search map services and related sub-pages for search text
* "Select by Attributes" style query building tools for map layer Query pages
* Layer and Field helper for map service Find pages.
* Feature count and feature count by domain item
* URL Shortener for query search services
* Auto-form fill on print tasks
* Map Service Previewer

Planned future enhancements will include:
* Tiled map service testing
* ArcGIS Online service support
* Support for geometry JSON fields
* Saving previously submitted REST requests in LocalStorage
* And many more...                    

معلومات أساسية عن التمديد

الاسم Map Services Enhanced Map Services Enhanced
ID iomnmncpnhloilggeiefebaokegohhdl
عنوان URL الرسمي https://chromewebstore.google.com/detail/map-services-enhanced/iomnmncpnhloilggeiefebaokegohhdl
الوصف An extension for analyzing, interrogating, and troubleshooting ArcGIS REST Services.
حجم الملف 77.38 KB
عدد التثبيتات 987
النسخة الحالية 1.4.0
آخر تحديث 2020-03-27
تاريخ النشر 2020-03-25
تقييم 5.00/5 مجموع تقييمات 14
المطور Ken Doman
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/raykendo/Map-Services-Enhanced
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Map Services Enhanced",
    "short_name": "Map Services Enhanced",
    "version": "1.4.0",
    "manifest_version": 2,
    "description": "An extension for analyzing, interrogating, and troubleshooting ArcGIS REST Services.",
    "homepage_url": "https:\/\/github.com\/raykendo\/Map-Services-Enhanced",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "options_page": "src\/options\/options.html",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Map Services Enhanced",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*\/rest\/services",
                "*:\/\/*\/*\/rest\/services\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*\/rest\/services",
                "*:\/\/*\/*\/rest\/services\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "src\/inject\/status.js",
                "src\/inject\/mapImages.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*\/rest\/services\/*\/query",
                "*:\/\/*\/*\/rest\/services\/*\/query*"
            ],
            "js": [
                "src\/inject\/queryTest.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*\/rest\/services*execute",
                "*:\/\/*\/*\/rest\/services*execute*",
                "*:\/\/*\/*\/rest\/services*submitjob",
                "*:\/\/*\/*\/rest\/services*submitjob*"
            ],
            "js": [
                "src\/inject\/printTask.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "offline_enabled": false,
    "web_accessible_resources": [
        "src\/images\/*",
        "src\/config\/*"
    ]
}