├── DelphiMaps.groupproj ├── README.md ├── demos ├── DemoDirections │ ├── DemoDirections.dpr │ ├── DemoDirections.dproj │ ├── DemoDirections.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas ├── DemoGeoCoder │ ├── DemoGeoCoder.dpr │ ├── DemoGeoCoder.dproj │ ├── DemoGeoCoder.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas ├── DemoGeoCoderSimple │ └── DemoGeoCoderSimple.dpr ├── DemoGoogleMaps │ ├── DemoGoogleMaps.dpr │ ├── DemoGoogleMaps.dproj │ ├── DemoGoogleMaps.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas ├── DemoStaticMap │ ├── DemoStaticMap.dpr │ ├── DemoStaticMap.dproj │ ├── DemoStaticMap.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas ├── DemoStreetView │ ├── DemoStreetView.dpr │ ├── DemoStreetView.dproj │ ├── DemoStreetView.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas └── DemoWMS │ ├── DemoWMS.dpr │ ├── DemoWMS.dproj │ ├── DemoWMS.res │ ├── uFrmMain.dfm │ └── uFrmMain.pas ├── packages ├── DelphiMapsDesignTime.dpk ├── DelphiMapsDesignTime.dproj ├── DelphiMapsDesignTime.res ├── DelphiMapsRunTime.dpk ├── DelphiMapsRunTime.dproj └── DelphiMapsRunTime.res └── source ├── DelphiMaps.Browser.Event.pas ├── DelphiMaps.Browser.External.pas ├── DelphiMaps.Browser.ExternalContainer.pas ├── DelphiMaps.Browser.IntfDocHostUIHandler.pas ├── DelphiMaps.Browser.NulContainer.pas ├── DelphiMaps.Browser.pas ├── DelphiMaps.DouglasPeuckers.pas ├── DelphiMaps.GeoCoder.pas ├── DelphiMaps.GeoCoderXML.pas ├── DelphiMaps.GoogleDirections.pas ├── DelphiMaps.GoogleDirectionsXML.pas ├── DelphiMaps.GoogleMaps.dcr ├── DelphiMaps.GoogleMaps.html ├── DelphiMaps.GoogleMaps.pas ├── DelphiMaps.GoogleMaps_html.rc ├── DelphiMaps.GoogleMaps_html.res ├── DelphiMaps.LayerList.pas ├── DelphiMaps.Location.pas ├── DelphiMaps.Register.pas ├── DelphiMaps.StaticMap.pas ├── DelphiMaps.StreetView.html ├── DelphiMaps.StreetView.pas ├── DelphiMaps.StreetView_html.rc ├── DelphiMaps.StreetView_html.res ├── DelphiMaps.WMS.Client.pas ├── DelphiMaps.WebImage.pas ├── DelphiMapsBrowserExternal.ridl ├── DelphiMapsBrowserExternal.tlb └── DelphiMapsBrowserExternal_TLB.pas /DelphiMaps.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/DelphiMaps.groupproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/README.md -------------------------------------------------------------------------------- /demos/DemoDirections/DemoDirections.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoDirections/DemoDirections.dpr -------------------------------------------------------------------------------- /demos/DemoDirections/DemoDirections.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoDirections/DemoDirections.dproj -------------------------------------------------------------------------------- /demos/DemoDirections/DemoDirections.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoDirections/DemoDirections.res -------------------------------------------------------------------------------- /demos/DemoDirections/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoDirections/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoDirections/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoDirections/uFrmMain.pas -------------------------------------------------------------------------------- /demos/DemoGeoCoder/DemoGeoCoder.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoder/DemoGeoCoder.dpr -------------------------------------------------------------------------------- /demos/DemoGeoCoder/DemoGeoCoder.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoder/DemoGeoCoder.dproj -------------------------------------------------------------------------------- /demos/DemoGeoCoder/DemoGeoCoder.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoder/DemoGeoCoder.res -------------------------------------------------------------------------------- /demos/DemoGeoCoder/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoder/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoGeoCoder/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoder/uFrmMain.pas -------------------------------------------------------------------------------- /demos/DemoGeoCoderSimple/DemoGeoCoderSimple.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGeoCoderSimple/DemoGeoCoderSimple.dpr -------------------------------------------------------------------------------- /demos/DemoGoogleMaps/DemoGoogleMaps.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGoogleMaps/DemoGoogleMaps.dpr -------------------------------------------------------------------------------- /demos/DemoGoogleMaps/DemoGoogleMaps.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGoogleMaps/DemoGoogleMaps.dproj -------------------------------------------------------------------------------- /demos/DemoGoogleMaps/DemoGoogleMaps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGoogleMaps/DemoGoogleMaps.res -------------------------------------------------------------------------------- /demos/DemoGoogleMaps/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGoogleMaps/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoGoogleMaps/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoGoogleMaps/uFrmMain.pas -------------------------------------------------------------------------------- /demos/DemoStaticMap/DemoStaticMap.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStaticMap/DemoStaticMap.dpr -------------------------------------------------------------------------------- /demos/DemoStaticMap/DemoStaticMap.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStaticMap/DemoStaticMap.dproj -------------------------------------------------------------------------------- /demos/DemoStaticMap/DemoStaticMap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStaticMap/DemoStaticMap.res -------------------------------------------------------------------------------- /demos/DemoStaticMap/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStaticMap/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoStaticMap/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStaticMap/uFrmMain.pas -------------------------------------------------------------------------------- /demos/DemoStreetView/DemoStreetView.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStreetView/DemoStreetView.dpr -------------------------------------------------------------------------------- /demos/DemoStreetView/DemoStreetView.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStreetView/DemoStreetView.dproj -------------------------------------------------------------------------------- /demos/DemoStreetView/DemoStreetView.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStreetView/DemoStreetView.res -------------------------------------------------------------------------------- /demos/DemoStreetView/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStreetView/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoStreetView/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoStreetView/uFrmMain.pas -------------------------------------------------------------------------------- /demos/DemoWMS/DemoWMS.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoWMS/DemoWMS.dpr -------------------------------------------------------------------------------- /demos/DemoWMS/DemoWMS.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoWMS/DemoWMS.dproj -------------------------------------------------------------------------------- /demos/DemoWMS/DemoWMS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoWMS/DemoWMS.res -------------------------------------------------------------------------------- /demos/DemoWMS/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoWMS/uFrmMain.dfm -------------------------------------------------------------------------------- /demos/DemoWMS/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/demos/DemoWMS/uFrmMain.pas -------------------------------------------------------------------------------- /packages/DelphiMapsDesignTime.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsDesignTime.dpk -------------------------------------------------------------------------------- /packages/DelphiMapsDesignTime.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsDesignTime.dproj -------------------------------------------------------------------------------- /packages/DelphiMapsDesignTime.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsDesignTime.res -------------------------------------------------------------------------------- /packages/DelphiMapsRunTime.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsRunTime.dpk -------------------------------------------------------------------------------- /packages/DelphiMapsRunTime.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsRunTime.dproj -------------------------------------------------------------------------------- /packages/DelphiMapsRunTime.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/packages/DelphiMapsRunTime.res -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.Event.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.Event.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.External.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.External.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.ExternalContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.ExternalContainer.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.IntfDocHostUIHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.IntfDocHostUIHandler.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.NulContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.NulContainer.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Browser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Browser.pas -------------------------------------------------------------------------------- /source/DelphiMaps.DouglasPeuckers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.DouglasPeuckers.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GeoCoder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GeoCoder.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GeoCoderXML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GeoCoderXML.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleDirections.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleDirections.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleDirectionsXML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleDirectionsXML.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleMaps.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleMaps.dcr -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleMaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleMaps.html -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleMaps.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleMaps.pas -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleMaps_html.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleMaps_html.rc -------------------------------------------------------------------------------- /source/DelphiMaps.GoogleMaps_html.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.GoogleMaps_html.res -------------------------------------------------------------------------------- /source/DelphiMaps.LayerList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.LayerList.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Location.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Location.pas -------------------------------------------------------------------------------- /source/DelphiMaps.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.Register.pas -------------------------------------------------------------------------------- /source/DelphiMaps.StaticMap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.StaticMap.pas -------------------------------------------------------------------------------- /source/DelphiMaps.StreetView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.StreetView.html -------------------------------------------------------------------------------- /source/DelphiMaps.StreetView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.StreetView.pas -------------------------------------------------------------------------------- /source/DelphiMaps.StreetView_html.rc: -------------------------------------------------------------------------------- 1 | STREETVIEW_HTML RCDATA "DelphiMaps.StreetView.html" 2 | -------------------------------------------------------------------------------- /source/DelphiMaps.StreetView_html.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.StreetView_html.res -------------------------------------------------------------------------------- /source/DelphiMaps.WMS.Client.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.WMS.Client.pas -------------------------------------------------------------------------------- /source/DelphiMaps.WebImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMaps.WebImage.pas -------------------------------------------------------------------------------- /source/DelphiMapsBrowserExternal.ridl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMapsBrowserExternal.ridl -------------------------------------------------------------------------------- /source/DelphiMapsBrowserExternal.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMapsBrowserExternal.tlb -------------------------------------------------------------------------------- /source/DelphiMapsBrowserExternal_TLB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouterVanNifterick/delphi-maps/HEAD/source/DelphiMapsBrowserExternal_TLB.pas --------------------------------------------------------------------------------