DougFinke

Untitled

Sep 6th, 2011
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Get-Address ($query) {    
  2.  
  3.     if(!$BingMapsService) {
  4.         $url = "http://dev.virtualearth.net/webservices/v1/geocodeservice/geocodeservice.svc?wsdl"
  5.         $BingMapsService = New-WebServiceProxy $url -Namespace BingMapsGeocodeDemo.BingMapsService
  6.     }
  7.  
  8.     $c = New-Object BingMapsGeocodeDemo.BingMapsService.Credentials
  9.     $c.ApplicationId = $BingMapsKey
  10.  
  11.     $request = new-object BingMapsGeocodeDemo.BingMapsService.GeocodeRequest
  12.     $request.Credentials = $c
  13.     $request.Query = $query
  14.  
  15.     $BingMapsService.Geocode($request)
  16. }
  17.  
  18. function Get-DisplayName($query="NYC") {
  19.     Get-Address $query | select -ExpandProperty results | select displayname
  20. }
  21.  
  22. Get-DisplayName dallas
Advertisement
Add Comment
Please, Sign In to add comment