Sur des requêtes avec une réponse positive (accuracy="1.0") le champ "Street" est vide.
Exemple, la demande
<?xml version="1.0" encoding="UTF-8"?>
<XLS
xmlns:xls="http://www.opengis.net/xls"
xmlns:gml="http://www.opengis.net/gml"
xmlns="http://www.opengis.net/xls"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.2"
xsi:schemaLocation="http://www.opengis.net/xls
http://schemas.opengis.net/ols/1.2/olsAll.xsd">
<RequestHeader/>
<Request requestID="1" version="1.2" methodName="LocationUtilityService" maximumResponses="20">
<GeocodeRequest returnFreeForm="false">
<Address countryCode="StreetAddress">
<StreetAddress>
<Street>La Ville Chauvin</Street>
</StreetAddress>
<Place type="Municipality">BOISGERVILLY</Place>
<Place type="departement">35</Place>
</Address>
</GeocodeRequest>
</Request>
</XLS>
la réponse
<?xml version="1.0" standalone="yes"?>
<XLS version="1.2" xsi:schemaLocation="http://gpp3-wxs.ign.fr/schemas/olsAll.xsd" xmlns:xls="http://www.opengis.net/xls" xmlns="http://www.opengis.net/xls" xmlns:xlsext="http://www.opengis.net/xlsext" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseHeader/>
<Response version="1.2" requestID="1">
<GeocodeResponse>
<GeocodeResponseList numberOfGeocodedAddresses="1">
<GeocodedAddress>
<gml:Point>
<gml:pos>48.166557 -2.06691</gml:pos>
</gml:Point>
<Address countryCode="StreetAddress">
<StreetAddress>
<Street></Street>
</StreetAddress>
<Place type="Municipality">Boisgervilly</Place>
<Place type="Qualite">30.0</Place>
<Place type="Departement">35</Place>
<Place type="Bbox">-2.129331;48.146095;-2.043324;48.187829</Place>
<Place type="Commune">Boisgervilly</Place>
<Place type="Territoire">FXX</Place>
<PostalCode>35360</PostalCode>
</Address>
<GeocodeMatchCode matchType="City" accuracy="1.0"/>
</GeocodedAddress>
</GeocodeResponseList>
</GeocodeResponse>
</Response>
</XLS>