├── .gitignore ├── BingMapsSDSToolkit.sln ├── Build └── BingMapsSDSToolkit.nuspec ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Docs ├── ApiReference │ ├── CommonApiReference.md │ ├── DataSourceApiReference.md │ ├── GeoDataApiReference.md │ ├── GeocodeDataFlowApiReference.md │ ├── QueryApiReference.md │ └── Readme.md └── Readme.md ├── LICENSE ├── README.md ├── SECURITY.md ├── Samples ├── Console │ ├── SDSToolkitConsoleApp.Core │ │ ├── Program.cs │ │ └── SDSToolkitConsoleApp.Core.csproj │ └── SDSToolkitConsoleApp │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SDSToolkitConsoleApp.csproj │ │ └── packages.config └── WPF │ └── BingSDSTestApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── BingSDSTestApp.csproj │ ├── Converters │ └── VisibilityConverter.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Views │ ├── DataSourceConverterModal.xaml │ ├── DataSourceConverterModal.xaml.cs │ ├── DataSourceInfoModal.xaml │ ├── DataSourceInfoModal.xaml.cs │ ├── DeleteModal.xaml │ ├── DeleteModal.xaml.cs │ ├── DownloadModal.xaml │ ├── DownloadModal.xaml.cs │ ├── UploadModal.xaml │ └── UploadModal.xaml.cs │ └── packages.config └── Source ├── BingMapsSDSToolkit.Standard └── BingMapsSDSToolkit.Standard.csproj ├── BingMapsSDSToolkit.csproj ├── Common ├── BasicDataSourceInfo.cs ├── BingDataSources.cs ├── DistanceUnitType.cs ├── FileExtensionUtilities.cs ├── GeoDataLocation.cs ├── Geography.cs ├── InternalSettings.cs └── SpatialTools.cs ├── DataSourceAPI ├── DataSource.cs ├── DataSourceManager.cs ├── Enums │ ├── DataSourceFormat.cs │ └── LoadOperation.cs └── Models │ ├── ColumnHeader.cs │ ├── DataServiceJob.cs │ ├── DataSourceDetails.cs │ ├── DataSourceGeocodeResults.cs │ ├── DataflowJob.cs │ ├── DataflowResponse.cs │ ├── DataflowResultSet.cs │ ├── Link.cs │ └── ValidationResult.cs ├── GeoDataAPI ├── Enums │ └── BoundaryEntityType.cs ├── GeoDataManager.cs ├── GetBoundaryRequest.cs ├── Models │ ├── Copyright.cs │ ├── CopyrightSource.cs │ ├── GeoDataPolygon.cs │ ├── GeoDataResponse.cs │ ├── GeoDataResult.cs │ ├── GeoDataResultSet.cs │ ├── Metadata.cs │ ├── Name.cs │ └── Primitive.cs └── PointCompression.cs ├── GeocodeDataFlowAPI ├── BatchGeocodeManager.cs ├── BatchGeocoderResults.cs ├── Enums │ ├── BatchFileFormat.cs │ ├── CalculationMethodTypes.cs │ ├── ConfidenceTypes.cs │ ├── GeocodeEntityType.cs │ ├── MatchCodeTypes.cs │ └── QueryParsePropertyTypes.cs ├── GeocodeFeed.cs └── Models │ ├── Address.cs │ ├── BaseRequest.cs │ ├── BoundingBox.cs │ ├── ConfidenceFilter.cs │ ├── GeocodeEntity.cs │ ├── GeocodePoint.cs │ ├── GeocodeRequest.cs │ ├── GeocodeResponse.cs │ ├── QueryParseValue.cs │ └── ReverseGeocodeRequest.cs ├── Internal ├── DelimitedFileReader.cs ├── DelimitedFileWriter.cs ├── DownloadDetails.cs ├── ServiceHelper.cs ├── XmlNamespaces.cs └── XmlUtilities.cs ├── Properties └── AssemblyInfo.cs ├── QueryAPI ├── Enums │ ├── AvoidType.cs │ ├── CompareOperator.cs │ ├── LogicalOperator.cs │ ├── RouteOptimizationType.cs │ └── TravelModeType.cs ├── FindByPropertyRequest.cs ├── FindInBoundingBoxRequest.cs ├── FindNearByRequest.cs ├── FindNearRouteRequest.cs ├── IntersectionSearchRequest.cs ├── Models │ ├── FilterExpression.cs │ ├── FilterGroup.cs │ ├── IFilter.cs │ ├── QueryResponse.cs │ └── QueryResult.cs └── QueryManager.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /BingMapsSDSToolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/BingMapsSDSToolkit.sln -------------------------------------------------------------------------------- /Build/BingMapsSDSToolkit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Build/BingMapsSDSToolkit.nuspec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/ApiReference/CommonApiReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/CommonApiReference.md -------------------------------------------------------------------------------- /Docs/ApiReference/DataSourceApiReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/DataSourceApiReference.md -------------------------------------------------------------------------------- /Docs/ApiReference/GeoDataApiReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/GeoDataApiReference.md -------------------------------------------------------------------------------- /Docs/ApiReference/GeocodeDataFlowApiReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/GeocodeDataFlowApiReference.md -------------------------------------------------------------------------------- /Docs/ApiReference/QueryApiReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/QueryApiReference.md -------------------------------------------------------------------------------- /Docs/ApiReference/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/ApiReference/Readme.md -------------------------------------------------------------------------------- /Docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Docs/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp.Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp.Core/Program.cs -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp.Core/SDSToolkitConsoleApp.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp.Core/SDSToolkitConsoleApp.Core.csproj -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp/Program.cs -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp/SDSToolkitConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp/SDSToolkitConsoleApp.csproj -------------------------------------------------------------------------------- /Samples/Console/SDSToolkitConsoleApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/Console/SDSToolkitConsoleApp/packages.config -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/App.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/App.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/BingSDSTestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/BingSDSTestApp.csproj -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DataSourceConverterModal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DataSourceConverterModal.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DataSourceConverterModal.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DataSourceConverterModal.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DataSourceInfoModal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DataSourceInfoModal.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DataSourceInfoModal.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DataSourceInfoModal.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DeleteModal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DeleteModal.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DeleteModal.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DeleteModal.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DownloadModal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DownloadModal.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/DownloadModal.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/DownloadModal.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/UploadModal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/UploadModal.xaml -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/Views/UploadModal.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/Views/UploadModal.xaml.cs -------------------------------------------------------------------------------- /Samples/WPF/BingSDSTestApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Samples/WPF/BingSDSTestApp/packages.config -------------------------------------------------------------------------------- /Source/BingMapsSDSToolkit.Standard/BingMapsSDSToolkit.Standard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/BingMapsSDSToolkit.Standard/BingMapsSDSToolkit.Standard.csproj -------------------------------------------------------------------------------- /Source/BingMapsSDSToolkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/BingMapsSDSToolkit.csproj -------------------------------------------------------------------------------- /Source/Common/BasicDataSourceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/BasicDataSourceInfo.cs -------------------------------------------------------------------------------- /Source/Common/BingDataSources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/BingDataSources.cs -------------------------------------------------------------------------------- /Source/Common/DistanceUnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/DistanceUnitType.cs -------------------------------------------------------------------------------- /Source/Common/FileExtensionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/FileExtensionUtilities.cs -------------------------------------------------------------------------------- /Source/Common/GeoDataLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/GeoDataLocation.cs -------------------------------------------------------------------------------- /Source/Common/Geography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/Geography.cs -------------------------------------------------------------------------------- /Source/Common/InternalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/InternalSettings.cs -------------------------------------------------------------------------------- /Source/Common/SpatialTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Common/SpatialTools.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/DataSource.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/DataSourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/DataSourceManager.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Enums/DataSourceFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Enums/DataSourceFormat.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Enums/LoadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Enums/LoadOperation.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/ColumnHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/ColumnHeader.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataServiceJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataServiceJob.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataSourceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataSourceDetails.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataSourceGeocodeResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataSourceGeocodeResults.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataflowJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataflowJob.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataflowResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataflowResponse.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/DataflowResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/DataflowResultSet.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/Link.cs -------------------------------------------------------------------------------- /Source/DataSourceAPI/Models/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/DataSourceAPI/Models/ValidationResult.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Enums/BoundaryEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Enums/BoundaryEntityType.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/GeoDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/GeoDataManager.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/GetBoundaryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/GetBoundaryRequest.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/Copyright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/Copyright.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/CopyrightSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/CopyrightSource.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/GeoDataPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/GeoDataPolygon.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/GeoDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/GeoDataResponse.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/GeoDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/GeoDataResult.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/GeoDataResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/GeoDataResultSet.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/Metadata.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/Name.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/Models/Primitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/Models/Primitive.cs -------------------------------------------------------------------------------- /Source/GeoDataAPI/PointCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeoDataAPI/PointCompression.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/BatchGeocodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/BatchGeocodeManager.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/BatchGeocoderResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/BatchGeocoderResults.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/BatchFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/BatchFileFormat.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/CalculationMethodTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/CalculationMethodTypes.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/ConfidenceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/ConfidenceTypes.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/GeocodeEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/GeocodeEntityType.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/MatchCodeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/MatchCodeTypes.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Enums/QueryParsePropertyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Enums/QueryParsePropertyTypes.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/GeocodeFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/GeocodeFeed.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/Address.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/BaseRequest.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/BoundingBox.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/ConfidenceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/ConfidenceFilter.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/GeocodeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/GeocodeEntity.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/GeocodePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/GeocodePoint.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/GeocodeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/GeocodeRequest.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/GeocodeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/GeocodeResponse.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/QueryParseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/QueryParseValue.cs -------------------------------------------------------------------------------- /Source/GeocodeDataFlowAPI/Models/ReverseGeocodeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/GeocodeDataFlowAPI/Models/ReverseGeocodeRequest.cs -------------------------------------------------------------------------------- /Source/Internal/DelimitedFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/DelimitedFileReader.cs -------------------------------------------------------------------------------- /Source/Internal/DelimitedFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/DelimitedFileWriter.cs -------------------------------------------------------------------------------- /Source/Internal/DownloadDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/DownloadDetails.cs -------------------------------------------------------------------------------- /Source/Internal/ServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/ServiceHelper.cs -------------------------------------------------------------------------------- /Source/Internal/XmlNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/XmlNamespaces.cs -------------------------------------------------------------------------------- /Source/Internal/XmlUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Internal/XmlUtilities.cs -------------------------------------------------------------------------------- /Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Enums/AvoidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Enums/AvoidType.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Enums/CompareOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Enums/CompareOperator.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Enums/LogicalOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Enums/LogicalOperator.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Enums/RouteOptimizationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Enums/RouteOptimizationType.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Enums/TravelModeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Enums/TravelModeType.cs -------------------------------------------------------------------------------- /Source/QueryAPI/FindByPropertyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/FindByPropertyRequest.cs -------------------------------------------------------------------------------- /Source/QueryAPI/FindInBoundingBoxRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/FindInBoundingBoxRequest.cs -------------------------------------------------------------------------------- /Source/QueryAPI/FindNearByRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/FindNearByRequest.cs -------------------------------------------------------------------------------- /Source/QueryAPI/FindNearRouteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/FindNearRouteRequest.cs -------------------------------------------------------------------------------- /Source/QueryAPI/IntersectionSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/IntersectionSearchRequest.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Models/FilterExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Models/FilterExpression.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Models/FilterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Models/FilterGroup.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Models/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Models/IFilter.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Models/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Models/QueryResponse.cs -------------------------------------------------------------------------------- /Source/QueryAPI/Models/QueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/Models/QueryResult.cs -------------------------------------------------------------------------------- /Source/QueryAPI/QueryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/QueryAPI/QueryManager.cs -------------------------------------------------------------------------------- /Source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BingMapsSDSToolkit/HEAD/Source/packages.config --------------------------------------------------------------------------------