Get Scope variable from isolated scope in directive

Im still new to Ionic and Angular. I used a directive to create map and its working fine. Now, in my main view (where map is attached), I have a submit button to send the data/variable from directive and the data in my view to my main controller. I've been searching around the net and cant still figure out the correct way. I hope you could help me.

Directive

angular.module('mase.directives', []).directive('map', ["MapService", function(MapService) {
    return {
        restrict: 'E',
        scope: {
            onCreate: '&'
            //geoloc: '@'
        },
        link: function ($scope, $element, $attr) {
            function initialize() {
                var mapOptions = {
                    // Set to Philippines
                    center: new google.maps.LatLng(14.6839606, 121.0622039),
                    zoom: 16,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                };

                MapService.map = new google.maps.Map($element[0], mapOptions);

                MapService.marker = new google.maps.Marker({
                    map: MapService.map
                });

                $scope.onCreate({
                    map: MapService.map,         //link map to map in controller
                    marker: MapService.marker,   //link marker to marker in controller
                    geoloc: MapService.geoloc    //link geoloc to geoloc in controller
                });

                $scope.$parent.longitude = 'sample longitude';

                /*
                    console.log('MapService.map in directive', MapService.map);
                    console.log('MapService.marker in directive', MapService.marker);
                    console.log('MapService.geoloc in directive', MapService.geoloc);
                */

                // Stop the side bar from dragging when mousedown/tapdown on the map
                google.maps.event.addDomListener($element[0], 'mousedown', function (e) {
                    e.preventDefault();
                    return false;
                });
            }

            if (document.readyState === "complete") {
                initialize();
            } else {
                google.maps.event.addDomListener(window, 'load', initialize);
            }
        }
    }
}]);

Directive Controller

.controller('MapCtrl', ["$scope", "$ionicLoading", "MapService", function($scope, $ionicLoading, MapService) {
    $scope.mapCreated = function(map, marker, geoloc) {
        $scope.map = map;       //sets the map from the directive to the  $scope
        $scope.marker = marker; //sets the marker from the directive to the  $scope
        $scope.geoloc = geoloc; //sets the geoloc from the directive to the $scope
        console.log('$scope.geoloc in $scope.mapCreated', $scope.geoloc);
        $scope.centerOnMe();
    };

    $scope.centerOnMe = function () {
        console.log("Centering");
        if (!$scope.geoloc && !$scope.map && !$scope.marker) {
            console.log($scope.map);
            console.log($scope.marker);
            console.log($scope.geoloc);

            return;
        }

        $scope.loading = $ionicLoading.show({
            template: 'Getting current location...',
            noBackdrop: true
        });

        MapService.getCurrLoc($ionicLoading);
    };
}])

In my main controller

.controller('Submit',function($scope,MapService) {
    $scope.doSubmit = function() {
        console.log($scope.longitude);
    }
})

In my main html

<ion-content>
    <form ng-submit="doSubmit()">
        <div class="list">
            <div class="item">
                <span class="input-label">Category&nbsp;<i class="ion-chevron-right"></i>&nbsp;Sub-category</span>
            </div>

            <ui-view name="incident-map"></ui-view>

            <label>LAT: {{longitude}}</label>
            <div class="item item-input item-stacked-label">  
                <span class="input-label">Description</span>
                <textarea style="margin-top: 0px; margin-bottom: 0px; height: 95px;"></textarea>
            </div>

            <div class="item item-button-right">
                <a href=""><i class="icon ion-android-camera text-24"></i></a>&nbsp;&nbsp;
                <a href=""><i class="icon ion-android-attach text-24"></i></a>
                <button class="button button-positive" type="submit">
                    <span class="text-16">Submit</span>
                </button>
            </div>
        </div>
    </form>
</ion-content>

Change $scope.latitud for $rootScope.latitud to "live" within both drivers. You can also make

<label ng-model="data.latitud">LAT: {{longitude}}</label>

<button class="button button-positive" ng-click="doSubmit()>
    <span class="text-16">Submit</span>
  </button>

$scope.doSubmit = function(){
    alert($scope.data.latitud);
}